:root {
    --verde: #3DBD8A;
    --verde-escuro: #2A9E6F;
    --branco: #FFFFFF;
    --cinza-texto: #555555;
    --cinza-claro: #F5F5F5;
    --preto: #1A1A1A;
    --fonte: 'Segoe UI', sans-serif;
    --degrade: linear-gradient(270deg, #80C783 0%, #00995C 100%);
    --titulos: #096;
    --titulos2: #00995C;
    --paragrafos: #6E6F6F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte);
    color: var(--preto);
    background-color: #F2FFF3;
    overflow-x: hidden;
}

ul { list-style: none; }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}   

/* ===== HEADER ===== */

.header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 140px;
    transition: height 0.3s ease;
}

.header.scrolled {
    background: var(--degrade);
    backdrop-filter: blur(12px);
    position: fixed;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header.scrolled .container {
    height: 100px;
}

.header.scrolled .logoassist img {
    width: 110px;
    height: auto;
}

.logoassist img {
    width: 164.725px;
    height: 78.463px;
    flex-shrink: 0;
    transition: width 0.3s ease;
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 60px;
}

.menu ul li a {
    color: var(--branco);
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.menu ul li a:hover { color: var(--verde); }

.btn-agendar {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--branco);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    padding: 13px 22px;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-agendar:hover { background-color: rgba(255,255,255,0.25); }

/* Menu toggle — oculto no desktop */
.menu-toggle { display: none; }
.menu-close  { display: none; }
.menu-logo   { display: none; }

/* HERO */

.hero {
    position: relative;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 70px 0;
    color: var(--branco);
    overflow: visible;
    border-bottom-left-radius: 55px;
    border-bottom-right-radius: 55px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 553px;
    flex-shrink: 0;
}

.hero-text-content h1 {
    font-family: "Urbanist", sans-serif;
    font-style: normal;
    font-size: 62px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-descrip p {
    font-family: "Urbanist", sans-serif;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.btn-tutorial a {
    display: inline-flex;
    align-items: center;
    background-color: var(--branco);
    color: var(--verde-escuro);
    padding: 8px 16px;
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    transition: transform 0.2s, background-color 0.2s;
    margin-top: 30px;
    gap: 2px;
}

.btn-tutorial a:hover {
    background-color: var(--cinza-claro);
    transform: translateY(-1px);
}

.icone-coracao {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

.btn-whatsapp {
    position: absolute;
    bottom: -30px;
    right: 70px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #00995C;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
}

.btn-whatsapp:hover { transform: scale(1.05); }

/* PILARES */

.secao-pilares{
    position: relative;
    background-position: center;
    overflow: visible;
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 120px;
}

.container-pilar{
    display: flex;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.header-pilares h1{
    color: var(--titulos2);
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
}

.header-pilares p{
    color: var(--paragrafos);
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-top: 24px;
    margin-bottom: 60px;
}

.cards-pilares {
    display: flex;
    justify-content: center;
    align-items: stretch; 
    gap: 48px;            
    width: 100%;          
    margin-bottom: 48px;
}

.card-pil {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1;              
    width: 362px;         
    height: 262px;        
    padding: 24px;      
    background: #fff;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.10);
}

.card-pil svg {
    color: var(--titulos);
    background: #DFFFE0;
    padding: 12px;
    border-radius: 14px;
    width: 48px;
    height: 48px;
    margin-top: 10px;
}

.card-pil h3 {
    color: #101828;
    font-family: "Urbanist", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 15px;
}

.card-pil p {
    font-family: "Urbanist", sans-serif;
    color: var(--paragrafos);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-top: 13px;
}

/* PRINCIPIOS */

.secao-principios{
    position: relative;
    background-position: center;
    overflow: visible;
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 120px;
}

.container-principios{
    display: flex;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.header-prin h1{
    color: #096;
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
}

.header-prin p{
    color: var(--paragrafos);
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-top: 27px;
    margin-bottom: 20px;
}

.cards-prin {
    display: flex;
    justify-content: center;
    align-items: stretch; 
    gap: 48px;            
    width: 100%;          
    margin-bottom: 48px;
}

.card-prin {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1;              
    width: 363px;         
    height: 334px;        
    padding: 24px;      
    border-radius: 16px;
    box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.10);
    background: #00995C;
}

.card-prin svg {
    color: var(--titulos);
    background: var(--branco);
    padding: 12px;
    border-radius: 14px;
    width: 60px;
    height: 60px;
    margin-top: 10px;
    box-sizing: border-box;
    flex-shrink: 0;
    object-fit: contain;
}

.card-prin h3 {
    color: var(--branco);
    font-family: "Urbanist", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 15px;
}

.card-prin p {
    font-family: "Urbanist", sans-serif;
    color: var(--branco);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-top: 9px;
}

/* SEGURANÇA */

.secao-expectativa{
    position: relative;
    background-position: center;
    overflow: visible;
    border-bottom-left-radius: 120px;
    border-bottom-right-radius: 120px;
}

.container-expectativa{
    display: flex;
    width: 100%;             
    max-width: 1440px;       
    margin: 0 auto;          
    padding: 80px 120px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    box-sizing: border-box;
}

.expectativa-secao {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expectativa-secao h1{
    color: #096;
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
}

.expectativa-secao p{
    color: var(--paragrafos);
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-top: 27px;
    margin-bottom: 80px;
}

.grid-expectativas {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px;
    width: 100%;
    max-width: 1168px;
}

.card-exp {
    display: flex;
    align-items: flex-start;
    width: 564px;
    height: 154px;
    padding: 32px 32px 0 32px; 
    gap: 24px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-sizing: border-box;
}

.card-exp > div:not(.icon-circle) {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #DFFFE0;
    flex-shrink: 0;
    font-size: 28px;
}

.card-exp h4 {
    color: #101828;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
    text-align: left;
}

.card-exp p {
    color: #4A5565;
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
    margin-top: 4px; 
    text-align: left;
}

.compromisso {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1168px;
    padding: 40px;     
    gap: 40px;        
    border-radius: 16px;
    background: var(--degrade); 
    box-sizing: border-box;
    margin: 0 auto;
    margin-top: 80px;
}

.compromisso h3 {
    color: #FFF;
    font-family: "Urbanist", sans-serif;
    font-size: 36px; 
    font-weight: 700;
    line-height: 40px;
    margin: 0;
    text-align: center;
}

.compromisso p {
    color: #FFF; 
    font-family: "Urbanist", sans-serif;
    font-size: 24px; 
    font-weight: 400;
    line-height: 28px;
    max-width: 800px;
    margin: 0;
    text-align: center;
}

.btn-contato a {
    display: inline-block;
    background: #FFF; 
    color: #00995C;  
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 32px; 
    border-radius: 10px; 
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-contato a:hover {
    background: #F9FAFB;
    transform: translateY(-1px);
}

/* FAQ */

.secao-faq {
    background: #F2FFF3;
    padding: 80px 120px;
}

.container-faq {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.faq-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.faq-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--degrade);
    flex-shrink: 0;
}

.faq-info h2 {
    font-family: "Urbanist", sans-serif;
    color: var(--titulos2);
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 15px;
}

.faq-info p {
    color: #6E6F6F;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

.faq-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 27px;
    color: #6E6F6F;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item p {
    padding: 0 24px 20px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #6E6F6F;
    line-height: 1.7;
}

.arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.arrow::after {
    content: '';
    border: solid #00804D;
    border-width: 0 1.5px 1.5px 0;
    padding: 3px;
    transform: rotate(45deg);
    margin-top: -3px;
}

details[open] .arrow::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

details[open] summary {
    color: var(--titulos);
    border-bottom: none;
}

/* FOOTER */

.footer-principal {
    background-image:
        linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
        var(--degrade);
    background-size: 40px 40px, 40px 40px, auto;
    color: #fff;
    width: 100%;
    padding: 80px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-footer {
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-logo img {
    width: 210px;
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: "Urbanist", sans-serif;
    color: rgba(255,255,255,0.75);
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #fff;
    transition: opacity 0.2s;
}

.social-icons a:hover { opacity: 0.8; }

.footer-col {
    padding-left: 29px;
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-top: 8px;
    margin-left: -90px;
}

.footer-col h3 {
    font-family: "Urbanist", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 40px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    color: #fff;
    line-height: 40px;
    white-space: normal;
    flex-wrap: wrap;
}

.footer-col ul li i { font-size: 17px; color: #fff; width: 20px; }

.links-rapidos li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    color: #fff;
    transition: opacity 0.2s;
}

.links-rapidos li a:hover { opacity: 0.8; }
.link-arrow { font-size: 12px; color: #fff; }

.footer-bottom {
    width: 100%;
    margin-top: 110px;
    padding-bottom: 24px;
}

.footer-bottom .container-footer { display: block; }

.footer-line {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.footer-bottom p {
    font-family: "Urbanist", sans-serif;
    font-size: 17px;
    color: #fff;
    text-align: center;
}

/* ===== ANIMAÇÕES DE SCROLL ===== */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */

/* ===== 1280px ===== */
@media (max-width: 1280px) {
    .container-pilar,
    .container-principios,
    .container-expectativa,
    .secao-faq,
    .footer-principal {
        padding-left: 60px;
        padding-right: 60px;
    }

    .container-pilar,
    .container-principios {
        width: 100%;
    }
}

/* ===== 1024px ===== */
@media (max-width: 1024px) {
    .hero-text-content h1 { font-size: 48px; }

    .cards-pilares,
    .cards-prin { gap: 24px; }

    .grid-expectativas { gap: 24px; }
    .card-exp { width: 100%; height: auto; }

    .container-faq { grid-template-columns: 1fr; gap: 40px; }
    .container-footer { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-col-brand { grid-column: 1 / -1; }
}

/* ===== 768px — MOBILE ===== */
@media (max-width: 768px) {

    /* --- HEADER --- */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 4px;
    }

    .menu-toggle span {
        display: block;
        width: 26px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .header {
        padding: 0; 
        width: 100%;
    }

    .header .container {
        height: auto;
        border-left: none;   
        border-right: none;  
        border-top: none;
        border-bottom: 1px solid rgba(73, 73, 73, 0.25);
        box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10);
        border-radius: 0;    
        padding: 30px 40px; 
        width: 100%;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header.scrolled .container {
        height: auto;
        padding: 10px 20px;
    }

    .header .logoassist img {
        width: 125px;
        height: 58.129px;
        margin-left: 10px;
    }

    .header.scrolled .logoassist img {
        width: 100px;
        height: auto;
    }

    /* --- MENU MOBILE --- */

    .menu-overlay {
    display: none;
    position: fixed;
    top: 178px; /* ajuste conforme a altura do menu */
    left: 0;
    right: 0;
    bottom: 0;
    background: #80c783c5;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    z-index: 150;
    }

    .menu-overlay.open {
        display: block;
    }

    .menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-radius: 14px !important;
        max-width: 100%;
        padding: 0 0 32px 0;
        z-index: 200;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.359);
    }

    .menu.open { display: block; }


    .menu-logo {
        display: flex;
        justify-content: space-between; 
        align-items: center;
        width: 100%;
        padding: 20px 40px; 
        background: linear-gradient(270deg, #80C783 0%, #00995C 100%);
        box-sizing: border-box;
    }

    .menu-logo img {
        width: 118px;
        height: 58.129px;
        margin-left: 10px;
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: transparent;
        border: none;
        padding: 4px;
        position: static !important; 
        margin-right: 30px;
    }

    .menu-close {
        display: flex;
        position: absolute;
        top: 30px;
        right: 70px;
        background: transparent;
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        font-size: 25px;
        font-weight: bold;
        cursor: pointer;
        z-index: 1;
    }

    .menu ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding: 0; 
        margin: 0 40px;
    }

    .menu ul li {
        width: 100%;
        border-bottom: 1px solid #E5E7EB;
        padding: 16px 0;
    }

    .menu ul li:last-child { border-bottom: none; padding-bottom: 0; }

    .menu ul li a {
        color: #6E6F6F;
        font-size: 16px;
        font-weight: 500;
    }

    .menu ul li button.btn-agendar {
        background: linear-gradient(270deg, #80C783 0%, #00995C 100%);
        color: #fff;
        border: none;
        border-radius: 12px;
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 600;
        backdrop-filter: none;
        box-shadow: none;
    }


    /* --- HERO --- */
    .hero {
        padding: 140px 20px 80px;
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
    }

    .hero-container { height: auto; min-height: 440px; padding: 0; }
    .hero-text-content h1 { font-size: 28px; line-height: 1.3; }
    .hero-descrip p { font-size: 15px; line-height: 24px; margin-top: 20px; margin-bottom: 20px; }
    .btn-tutorial a { font-size: 14px; padding: 8px 14px; }

    /* --- PILARES --- */
    .container-pilar,
    .container-principios,
    .container-expectativa {
        width: 100%;
        padding: 60px 20px;
        gap: 20px;
        margin-top: -35px;
    }

    .secao-pilares,
    .secao-principios,
    .secao-expectativa {
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }

    .header-pilares h1,
    .header-prin h1,
    .expectativa-secao h1 { font-size: 26px; line-height: 34px; }

    .header-pilares p,
    .header-prin p,
    .expectativa-secao p { font-size: 15px; line-height: 24px; margin-bottom: 32px; }

    .cards-pilares,
    .cards-prin {
        flex-direction: column;
        gap: 16px;
    }

    .card-pil,
    .card-prin {
        width: 100%;
        height: auto;
    }

    .card-pil h3,
    .card-prin h3 { font-size: 20px; }

    .card-pil p,
    .card-prin p { font-size: 15px; }

    /* --- SEGURANÇA / EXPECTATIVA --- */
    .grid-expectativas { grid-template-columns: 1fr; gap: 12px; }

    .card-exp {
        width: 100%;
        height: auto;
        padding: 20px;
        flex-direction: row;
        align-items: flex-start;
    }

    .card-exp h4 { font-size: 16px; }
    .card-exp p  { font-size: 14px; }

    .compromisso { padding: 28px 20px; gap: 24px; margin-top: 40px; }
    .compromisso h3 { font-size: 22px; line-height: 30px; }
    .compromisso p  { font-size: 15px; line-height: 24px; }

    /* --- FAQ --- */
    .secao-faq { padding: 60px 20px; }
    .container-faq { grid-template-columns: 1fr; gap: 28px; }
    .faq-info h2 { font-size: 26px; line-height: 34px; }
    .faq-info p  { font-size: 15px; margin-top: 12px; }
    .faq-item summary { font-size: 14px; padding: 16px 18px; }
    .faq-item p       { font-size: 13px; padding: 0 18px 16px; }

    /* --- FOOTER --- */
    .footer-principal { padding: 48px 20px 0; }
    .container-footer { grid-template-columns: 1fr; gap: 24px; }
    .footer-logo img  { width: 150px; }
    .footer-tagline   { font-size: 16px; margin-top: 16px; margin-bottom: 16px; }

    .footer-col {
        padding-left: 0;
        border-left: none;
        margin-left: 0;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-top: 20px;
    }

    .footer-col h3      { font-size: 20px; line-height: 28px; margin-bottom: 12px; }
    .footer-col ul li   { font-size: 15px; line-height: 28px; }
    .links-rapidos li a { font-size: 15px; }
    .footer-bottom      { margin-top: 28px; }
    .footer-bottom p    { font-size: 13px; }
}

/* ===== 480px ===== */
@media (max-width: 480px) {
    .hero-text-content h1          { font-size: 24px; }
    .header-pilares h1,
    .header-prin h1,
    .expectativa-secao h1          { font-size: 22px; }
}