@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* =========================================
   1. RESET E ESTILOS GERAIS
   ========================================= */
* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #000;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =========================================
   3. HERO SECTION E ONDAS
   ========================================= */
.hero-section {
    width: 100%;
    height: 80vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


.copyright-tag-img {
    position: absolute;
    right: 14px;
    bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1;
    z-index: 4;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.copyright-tag---hero {
    margin-bottom: 70px !important;
}


/* =========================================
   4. SEÇÕES DE CONTEÚDO (VERDE E VINHO)
   ========================================= */
.content-section {
    width: 100%;
    min-height: 50vh;
    padding: 60px 20px 150px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #8f2317;
}

/* * {
    outline: 1px solid red;
} */

.green-section {
    background-color: #084222;
}


.text-container {
    width: 100%;
    max-width: 1100px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
    overflow-wrap: break-word;
}

.titulo-principal {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: #ffd9a8;
    margin-bottom: 10px;
}

.subtitulo {
    font-size: 20px;
    font-weight: 600;
    text-align: center !important;
    color: #f0f0f0;
    margin-bottom: 50px;
}

.text-container h3 {
    font-size: 26px;
    color: #ffd9a8;
    margin-top: 40px;
    margin-bottom: 20px;
}

.text-container p {
    margin-bottom: 20px;
    text-align: justify;
}

.servicos-lista {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.servicos-lista li {
    margin-bottom: 15px;
    margin-left: 25px;
}

.text-container strong {
    color: #ffd9a8;
}

/* =========================================
   5. GRID DA EQUIPE (CARDS)
   ========================================= */
/*.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}*/

.equipe-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.membro-card {
    flex: 1 1 220px;
    max-width: 280px;

    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.membro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.membro-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffd9a8;
    margin-bottom: 20px;
    background-color: #fff;
}

.membro-card h5 {
    font-size: 22px;
    color: #ffd9a8;
    margin-bottom: 10px;
    font-weight: 700;
}

.membro-card p {
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: center;
    flex-grow: 1;
}

.membro-card a {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #ffd9a8;
    color: #ffd9a8;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.membro-card a:hover {
    background: #ffd9a8;
    color: #084222;
    text-decoration: none;
}

/* =========================================
   7. RESPONSIVIDADE (CELULAR)
   ========================================= */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .hero-section {
        height: 45vh;
        min-height: 260px;
    }

    .hero-copyright {
        right: 10px;
        bottom: 10px;
        font-size: 10px;
        padding: 5px 8px;
    }

    .content-section {
        padding: 45px 16px 120px;
        min-height: auto;
    }

    .text-container {
        font-size: 16px;
        line-height: 1.7;
    }

    .titulo-principal {
        font-size: 30px;
        line-height: 1.2;
    }

    .subtitulo {
        font-size: 17px;
        margin-bottom: 25px;
    }

    .text-container h3 {
        font-size: 22px;
        margin-top: 28px;
        margin-bottom: 16px;
    }

    .text-container p,
    .servicos-lista li {
        font-size: 16px;
        text-align: left;
    }

    .equipe-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 35px;
    }

    /*.equipe-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 35px;
    }*/

    .membro-card {
        padding: 24px 18px;
        width: 100%;
        max-width: 300px
    }

    .membro-card img {
        width: 100px;
        height: 100px;
    }

    .membro-card h5 {
        font-size: 20px;
    }

    .membro-card p {
        font-size: 15px;
    }

    .membro-card:hover {
        transform: none;
    }

    .membro-card a {
        width: 100%;
        text-align: center;
    }
}

/* =========================================
   ESTRUTURA PARA EMPILHAR OS BOTÕES
   ========================================= */
.curriculo {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Espaço entre o botão do Lattes e do LinkedIn */
    width: 100%;
    /* Garante que ocupe todo o espaço disponível no card */
}

/* =========================================
   O SEU ESTILO VISUAL ORIGINAL + AJUSTE DE LARGURA
   ========================================= */
.membro-card a {
    display: block;
    /* Mudou de inline-block para block para preencher a largura */
    width: 100%;
    /* Faz os dois botões terem exatamente o mesmo tamanho */
    box-sizing: border-box;
    /* Garante que o padding não quebre a largura do botão */

    padding: 10px 20px;
    border: 2px solid #ffd9a8;
    color: #ffd9a8;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.membro-card a:hover {
    background: #ffd9a8;
    color: #084222;
    text-decoration: none;
}