@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz@0,14..32;1,14..32&display=swap');

/* =========================================
   1. RESET E ESTILOS GERAIS
========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #000;
    width: 100%;
    overflow-x: hidden;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* =========================================
   3. HERO SECTION (Imagem Principal)
========================================= */
.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;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* =========================================
   5. SEÇÕES DE CONTEÚDO
========================================= */
.discover-section,
.plan-section {
    width: 100%;
    min-height: 90vh;
    height: auto;
    padding: 60px 20px 150px; /* Top; Right; Bottom; Left */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    /* align-items: center; */
    /* gap: 40px; */
}

.discover-section { background-color: #084222; }
.plan-section { background-color: #8f2317; }

.apresentacao-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    color: #fff;
    padding-bottom: 80px;
}

.titulo-apresentacao {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: #fdd8a4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.col-imagem { 
    flex: 1; 
    min-width: 300px; 
}

.col-texto {
    flex: 1.2;
    font-size: 18px;
    line-height: 1.6;
}

.col-texto strong { color: #fdd8a4; }
.col-texto p { margin-bottom: 15px; }

/* =========================================
   6. ACCORDION (BOTÃO)
========================================= */
details.google-accordion {
    margin-top: 15px;
    border: none;
    display: flex;
    flex-direction: column;
}

.conteudo-extra {
    order: 1;
    animation: fadeIn 0.5s ease;
    margin-bottom: 20px;
}

summary {
    order: 2;
    list-style: none;
    cursor: pointer;
    background-color: #303134;
    display: inline-flex;
    align-items: center;
    padding: 0 24px;
    height: 40px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #e8eaed;
    user-select: none;
    transition: background 0.2s;
    /* border: 1px solid rgba(255,255,255,0.1); */
    border: none;
    align-self: flex-start;
}

summary:hover { background-color: #3c4043; }
summary::-webkit-details-marker { display: none; }

.icone-seta {
    margin-left: 8px;
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
    fill: #9aa0a6;
}

.texto-ocultar { display: none; }
details[open] .texto-mostrar { display: none; }
details[open] .texto-ocultar { display: inline; }
details[open] .icone-seta { transform: rotate(180deg); }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.historia-ajuste .img-destaque {
    /* border-color: rgba(255, 255, 255, 0.4); */
    border: none;
}

/* =========================================
   8. RESPONSIVIDADE (CELULAR)
========================================= */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .hero-section {
        height: 45vh;
        min-height: 260px;
    }

    .discover-section,
    .plan-section {
        padding: 50px 20px 80px;
        gap: 30px;
        min-height: auto;
    }

    .titulo-apresentacao {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .apresentacao-container {
        padding-bottom: 20px;
    }

    .apresentacao-content {
        flex-direction: column;
        gap: 25px;
    }

    .historia-ajuste .apresentacao-content {
        flex-direction: column-reverse;
    }

    .col-imagem,
    .col-texto {
        width: 100%;
        min-width: 0;
    }

    .col-texto {
        font-size: 16px;
        line-height: 1.7;
    }

    .img-destaque {
        width: 100%;
        border-radius: 10px;
    }

    .copyright-tag-img {
        font-size: 10px;
        right: 10px;
        bottom: 10px;
    }

    summary {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 12px 20px;
        height: auto;
        /* border-radius: 14px; */
    }
}

.apresentacao-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
}

.col-imagem {
    flex: 1;
    width: 100%;
    min-width: 0;
    position: relative;
}

.img-destaque {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.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;
}

summary {
    background-color: #222;
}