/* Hero Sobre Section */
.hero-sobre {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-sobre .hero-content {
    text-align: left;
}

/* Nossa História Section */
.nossa-historia {
    padding: 64px 0;
    background-color: #f3f4f6;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: center;
}

.historia-image {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.historia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.historia-text {
    color: #4b5563;
    line-height: 1.8;
}

.historia-text p {
    font-size: 15px;
}

/* Valores Icons */
.valores-icons {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 48px;
}

.valor-item {
    flex: 1;
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.valor-item svg {
    color: #1f2937;
}

.valor-item p {
    font-size: 16px;
    color: #1f2937;
    font-weight: 500;
}

/* Missão e Valores Section */
.missao-valores {
    padding: 64px 0 80px;
    background-color: #3a3a3a;
}

.section-title-white {
    font-size: 32px;
    color: white;
    margin-bottom: 64px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 4px solid #4a4a4a;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 20px;
    color: white;
    margin-bottom: 4px;
}

.member-role {
    font-size: 14px;
    color: #9ca3af;
}

/* Footer Sobre */
.footer-sobre {
    background-color: #3a3a3a;
    color: white;
    padding: 48px 0;
    border-top: 1px solid #4a4a4a;
}

.footer-sobre-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

.logo-circle-footer {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle-footer span {
    color: #ff6b35;
    font-weight: bold;
    font-size: 24px;
}

/* Responsive */
@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .historia-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .historia-image {
        height: 280px;
    }

    .valores-icons {
        gap: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-sobre .hero-title {
        font-size: 32px;
    }

    .footer-sobre-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-sobre {
        height: 350px;
    }

    .hero-sobre .hero-title {
        font-size: 26px;
    }

    .valores-icons {
        flex-direction: column;
        gap: 32px;
    }

    .member-photo {
        width: 120px;
        height: 120px;
    }
}
