*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --verde: #1b3a3a;
    --verde-profundo: #143434;
    --offwhite: #eee9df;
    --cinza: #9aa7a7;
    --borda: rgba(238,233,223,0.10);
}

body{
    background: var(--verde);
    color: var(--offwhite);
    font-family: 'IBM Plex Sans', sans-serif;
}

html{
    scroll-behavior: smooth;
}

.hero-section{
    position: relative;
    overflow: hidden;
}
.hero-section::before{
    content: "";
    position: absolute;

    top: -40px;
    right: -120px;

    width: 700px;
    height: 260px;

    background-image: url("assets/estampainicio.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;

    opacity: 0.16;

    transform: rotate(-12deg);

    pointer-events: none;
    z-index: 0;
}

.hero::after{
    content: "";
    position: absolute;
    right: 3%;
    top: 52%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    background: url("assets/logofundo.png") no-repeat center;
    background-size: contain;
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
}
.hero-navbar{
    position: relative;
    z-index: 2;
}

.navbar{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 20px;
}

.logo img{
    width: 220px;
    height: auto;
    display: block;
}

.menu{
    display: flex;
    gap: 42px;
    list-style: none;
}

.menu a{
    position: relative;
    text-decoration: none;
    color: var(--offwhite);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.7px;
}

.menu a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--offwhite);
    transition: 0.3s ease;
}

.menu a:hover::after{
    width: 100%;
}

.hero-line{
    position: relative;
    z-index: 2;
    width: 100%;
    height: 1px;
    background: rgba(238,233,223,0.12);
}

.hero-grid{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: center;
    gap: 60px;
    padding-top: 36px;
}


.tag{
    display: inline-block;
    width: fit-content;
    margin-bottom: 30px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(238,233,223,0.08);
    border: 1px solid rgba(238,233,223,0.10);
    color: var(--offwhite);
    font-size: 14px;
    font-weight: 600;
}

.hero-content h1{
    max-width: 760px;
    margin-bottom: 30px;
    font-size: 66px;
    line-height: 1.03;
    letter-spacing: -2px;
    font-weight: 700;
}

.hero-content p{
    max-width: 620px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(238,233,223,0.78);
}

.buttons{
    display: flex;
    gap: 20px;
    margin-top: 42px;
}

.btn-primary,
.btn-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    height: 72px;

    padding: 0 32px;

    border-radius: 18px;

    background: transparent;

    border: 1px solid rgba(238,233,223,0.18);

    color: #f5f1e8;

    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;

    cursor: pointer;

    transition: 0.3s ease;
}

.btn-secondary:hover{
    background: rgba(255,255,255,0.05);
    border-color: rgba(238,233,223,0.35);
    transform: translateY(-2px);
}
.btn-primary{
    background: var(--offwhite);
    color: var(--verde);
    padding: 18px 34px;
    border-radius: 6px;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform: translateY(-2px);
}

.btn-secondary{
    color: var(--offwhite);
    padding: 18px 32px;
    border: 1px solid rgba(238,233,223,0.34);
    border-radius: 8px;
}

.hero-dashboard{
    transform: scale(0.88);
    transform-origin: center right;
}

.dashboard-card{
    width: 100%;
    max-width: 560px;
    padding: 46px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 0 48px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
}

.dashboard-label{
    display: block;
    margin-bottom: 34px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(238,233,223,0.62);
}

.executive-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.executive-card,
.executive-footer div{
    padding: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}

.executive-card small,
.executive-footer small{
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    color: rgba(238,233,223,0.58);
}

.executive-card strong{
    display: block;
    margin-bottom: 10px;
    font-size: 28px;
    color: var(--offwhite);
}

.executive-card span{
    font-size: 13px;
    font-weight: 700;
}

.positive{ color: #b7e4c7; }
.negative{ color: #ffb4a2; }

.executive-chart{
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(238,233,223,0.10);
}

.chart-line{
    height: 180px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.chart-line span{
    flex: 1;
    border-radius: 12px 12px 4px 4px;
    background: linear-gradient(180deg, rgba(238,233,223,1), rgba(238,233,223,0.25));
    box-shadow: 0 0 18px rgba(255,255,255,0.08);
}

.executive-footer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.executive-footer strong{
    font-size: 18px;
    color: var(--offwhite);
}

.section-label,
.section-tag{
    display: inline-block;
    margin-bottom: 22px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(238,233,223,0.48);
}

.pillars-section,
.insights-section{
    position: relative;
padding: 90px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20,54,54,0.98), rgba(15,42,42,0.96));
    color: var(--offwhite);
    padding: 100px 8%;
}

.pillars-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: url("assets/estampafundo.png") no-repeat center;
    background-size: cover;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.pillars-section > *,
.insights-section > *{
    position: relative;
    z-index: 2;
}

.pillars-header,
.insights-header{
    max-width: 920px;
    margin-bottom: 70px;
}

.pillars-header h2,
.insights-header h2{
    max-width: 940px;
    margin-bottom: 24px;
    font-size: 56px;
    line-height: 1.06;
    letter-spacing: -2px;
    color: var(--offwhite);
}

.pillars-header p,
.insights-header p{
    max-width: 760px;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(238,233,223,0.72);
}

.pillars-grid,
.insights-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.pillar-card,
.insight-card,
.method-step,
.about-card{
    background: rgba(255,255,255,0.035);
    border: 1px solid var(--borda);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.16);
    transition: 0.35s ease;
}

.pillar-card:hover,
.insight-card:hover,
.method-step:hover,
.about-card:hover{
    transform: translateY(-6px);
    border-color: rgba(238,233,223,0.18);
    box-shadow: 0 18px 60px rgba(0,0,0,0.26);
}

.pillar-card,
.insight-card{
    min-height: 280px;
    padding: 34px;
    border-radius: 28px;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pillar-card span,
.insight-card span{
    display: inline-block;
    margin-bottom: 22px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(238,233,223,0.45);
}

.pillar-card h3,
.insight-card h3{
    font-size: 2rem;
    line-height: 1.08;
    margin-bottom: 18px;
}

.pillar-card p,
.insight-card p{
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
}

.pillars-journey{
    width: 760px;
    max-width: 55%;
    height: 60px;
    margin: 52px auto 0;
    position: relative;
}

.journey-line{
    position: absolute;
    left: 0;
    top: 24px;
    width: 100%;
    height: 2px;
    background: rgba(238,233,223,0.18);
}

.journey-line::before,
.journey-line::after{
    content: "";
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.journey-line::before{
    left: 0;
    background: var(--offwhite);
    box-shadow: 0 0 18px rgba(255,255,255,0.35);
}

.journey-line::after{
    right: 0;
    background: rgba(238,233,223,0.42);
}

.method-map-section{
    position: relative;
    overflow: hidden;
    padding: 120px 8%;
    background: var(--verde);
}

.method-map-header{
    max-width: 920px;
    margin-bottom: 70px;
}

.method-map-header span,
.deliveries-header span{
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(238,233,223,0.55);
}

.method-map-header h2{
    max-width: 950px;
    margin-bottom: 28px;
    font-size: 64px;
    line-height: 1.04;
    letter-spacing: -2px;
    color: var(--offwhite);
}

.method-map-header p{
    max-width: 760px;
    font-size: 21px;
    line-height: 1.8;
    color: rgba(238,233,223,0.72);
}

.method-map-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.method-step{
    min-height: 320px;
    padding: 42px 36px;
    border-radius: 28px;
}

.step-number{
    margin-bottom: 26px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(238,233,223,0.38);
}

.method-step h3{
    margin-bottom: 24px;
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -1px;
    color: var(--offwhite);
}

.method-step p{
    font-size: 18px;
    line-height: 1.8;
    color: rgba(238,233,223,0.72);
}

.deliveries-section{
    padding: 120px 8%;
    background: linear-gradient(135deg, #eee9df, #e5dfd3);
    color: var(--verde-profundo);
}

.deliveries-header{
    max-width: 900px;
    margin-bottom: 70px;
}

.deliveries-header span{
    color: rgba(20,54,54,0.65);
}

.deliveries-header h2{
    max-width: 900px;
    margin-bottom: 24px;
    font-size: 62px;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--verde-profundo);
}

.deliveries-header p{
    max-width: 760px;
    font-size: 21px;
    line-height: 1.8;
    color: rgba(20,54,54,0.72);
}

.deliveries-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.delivery-card{
    min-height: 290px;
    padding: 38px 34px;
    border-radius: 28px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(20,54,54,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    transition: 0.35s ease;
}

.delivery-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.08);
}

.delivery-number{
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(20,54,54,0.42);
}

.delivery-card h3{
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: -1px;
    color: var(--verde-profundo);
}

.delivery-card p{
    font-size: 18px;
    line-height: 1.75;
    color: rgba(20,54,54,0.74);
}

.about-section{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 90px;
    align-items: center;
    background: var(--verde);
    color: var(--offwhite);
    padding: 130px 8%;
}

.about-content{
    max-width: 820px;
}

.about-content h2{
    margin-bottom: 32px;
    font-size: 54px;
    line-height: 0.96;
    letter-spacing: -2px;
    max-width: 760px;
}
    margin-bottom: 32px;
    font-size: 58px;
    line-height: 1.9;
    letter-spacing: -2px;
}

.about-content p{
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 1.9;
    color: rgba(238,233,223,0.76);
}

.about-content .btn-primary{
    margin-top: 28px;
}

.about-card{
    padding: 44px;
    border-radius: 24px;
}

.about-card h3{
    margin-bottom: 30px;
    font-size: 32px;
}

.about-card ul{
    list-style: none;
}

.about-card li{
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 18px;
    line-height: 1.5;
    color: rgba(238,233,223,0.75);
}

.final-cta-section{
    padding: 120px 8%;
    background: linear-gradient(135deg, rgba(20,54,54,0.98), rgba(15,42,42,0.96));
    text-align: center;
}

.final-cta-content{
    max-width: 820px;
    margin: 0 auto;
}

.final-cta-content h2{
    margin-bottom: 24px;
    font-size: 58px;
    line-height: 1.05;
    letter-spacing: -2px;
}

.final-cta-content p{
    margin-bottom: 36px;
    font-size: 21px;
    line-height: 1.7;
    color: rgba(238,233,223,0.74);
}


@media (max-width: 1100px){
.process-timeline{
    grid-template-columns: repeat(2, 1fr);
}
    .hero-grid,
    .about-section{
        grid-template-columns: 1fr;
    }

    .hero-dashboard{
        justify-content: flex-start;
    }

    .pillars-grid,
    .insights-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .method-map-grid,
    .deliveries-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px){
.process-timeline{
    grid-template-columns: 1fr;
}
    .hero{
        padding: 24px 6% 70px;
    }

    .navbar{
        align-items: flex-start;
        gap: 24px;
        flex-direction: column;
    }

    .menu{
        gap: 22px;
        flex-wrap: wrap;
    }

    .logo img{
        width: 190px;
    }

    .hero-content h1,
    .pillars-header h2,
    .method-map-header h2,
    .deliveries-header h2,
    .insights-header h2,
    .about-content h2,
    .final-cta-content h2{
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-grid{
        grid-template-columns: 1fr;
        padding-top: 40px;
        gap: 44px;
    }

    .buttons{
        flex-direction: column;
    }

    .dashboard-card{
    width: 100%;
    max-width: 520px;
    padding: 28px;
    border-radius: 28px;
}

    .executive-grid,
    .executive-footer,
    .pillars-grid,
    .method-map-grid,
    .deliveries-grid,
    .insights-grid{
        grid-template-columns: 1fr;
    }

    .pillars-journey{
        max-width: 90%;
    }
}
.whatsapp-float{
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;

    background: #25d366;
    color: white;

    padding: 16px 22px;
    border-radius: 999px;

    text-decoration: none;
    font-weight: 700;

    box-shadow: 0 14px 34px rgba(0,0,0,0.28);
    transition: 0.3s ease;
}

.whatsapp-float:hover{
    transform: translateY(-3px);
}
a{
    color: inherit;
    text-decoration: none;
}
/* ESTAMPA DIAGONAL NO HERO */

.hero{
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(11,43,43,0.96),
            rgba(7,31,31,0.98)
        ),
        url("assets/estampainicio.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.navbar,
.hero-line,
.hero-grid{
    position: relative;
    z-index: 2;
}
/* AJUSTE REFINADO DO HERO */

.hero{
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.30)), var(--verde) !important;
}

.hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 227px;

    background-image: url("assets/estampainicio.png");
    background-size: cover;
    background-position: center 18%;
    background-repeat: no-repeat;

    opacity: 0.215;
    pointer-events: none;
    z-index: 1;
}

.hero::after{
    content: "";
    position: absolute;
    right: 5%;
    top: 62%;
    transform: translateY(-50%);

    width: 540px;
    height: 540px;

    background: url("assets/logofundo.png") no-repeat center;
    background-size: contain;

    opacity: 0.19;
    pointer-events: none;
    z-index: 1;
}

.navbar,
.hero-line,
.hero-grid{
    position: relative;
    z-index: 2;
}
.process-section{
    position: relative;
    overflow: hidden;
    padding: 120px 8%;
    background: var(--verde);
    color: var(--offwhite);
}

.process-header{
    max-width: 920px;
    margin-bottom: 70px;
}

.process-header h2{
    max-width: 920px;
    margin-bottom: 24px;
    font-size: 58px;
    line-height: 1.06;
    letter-spacing: -2px;
    color: var(--offwhite);
}

.process-header p{
    max-width: 760px;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(238,233,223,0.72);
}

.process-timeline{
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-timeline::before{
    content: "";
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(238,233,223,0.10);
}

.process-step{
    position: relative;
    padding: 38px 30px;
    min-height: 290px;
    border-radius: 24px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(238,233,223,0.10);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.16);
    transition: 0.35s ease;
}

.process-step:hover{
    transform: translateY(-6px);
    border-color: rgba(238,233,223,0.18);
    box-shadow: 0 18px 60px rgba(0,0,0,0.26);
}

.process-number{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 26px;
    border-radius: 50%;
    background: rgba(238,233,223,0.045);
    border: 1px solid rgba(238,233,223,0.10);
    font-size: 24px;
    font-weight: 700;
    color: rgba(238,233,223,0.88);
}

.process-step h3{
    margin-bottom: 18px;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--offwhite);
}

.process-step p{
    font-size: 17px;
    line-height: 1.75;
    color: rgba(238,233,223,0.72);
}
/* AJUSTE DE ENQUADRAMENTO DAS SEÇÕES */

.pillars-section,
.process-section{
    padding-top: 72px;
    padding-bottom: 70px;
}

.pillars-header,
.process-header{
    margin-bottom: 48px;
}

.pillars-header h2,
.process-header h2{
    font-size: 48px;
    line-height: 1.02;
    max-width: 880px;
}

.pillars-header p,
.process-header p{
    font-size: 18px;
    line-height: 1.55;
}

.pillar-card,
.process-step{
    min-height: 190px;
    padding: 26px 26px;
}

.pillar-card h3,
.process-step h3{
    font-size: 24px;
    margin-bottom: 14px;
}

.pillar-card p,
.process-step p{
    font-size: 15.5px;
    line-height: 1.55;
}

.process-number{
    width: 58px;
    height: 58px;
    font-size: 20px;
    margin-bottom: 22px;
}

.process-timeline{
    gap: 20px;
}
/* CORREÇÃO FINAL DO HERO */

.hero{
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 28px 8% 80px;
    background: linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.28)), var(--verde) !important;
}

.hero-grid{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: center;
    gap: 60px;
    padding-top: 36px;
}

.hero-content{
    max-width: 760px;
}

.hero-content h1{
    max-width: 760px;
    margin-bottom: 30px;
    font-size: 66px;
    line-height: 1.03;
    letter-spacing: -2px;
    font-weight: 700;
}

.hero-content p{
    max-width: 620px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(238,233,223,0.78);
}

.buttons{
    display: flex;
    gap: 20px;
    margin-top: 42px;
}

.hero-dashboard{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    transform: scale(0.82);
    transform-origin: center right;
}

.navbar,
.hero-line,
.hero-grid{
    position: relative;
    z-index: 2;
}
/* AJUSTE FINAL DO DASHBOARD DO HERO */

.hero-dashboard{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    transform: scale(0.94);
    transform-origin: center right;
}

.dashboard-card{
    max-width: 500px;
    padding: 26px;
    border-radius: 26px;
}

.dashboard-label{
    margin-bottom: 24px;
    font-size: 11px;
}

.executive-grid{
    gap: 12px;
}

.executive-card,
.executive-footer div{
    padding: 16px;
    border-radius: 16px;
}

.executive-card strong{
    font-size: 24px;
}

.executive-chart{
    margin-top: 22px;
    padding-top: 20px;
}

.chart-line{
    height: 135px;
    gap: 10px;
}

.executive-footer{
    gap: 12px;
    margin-top: 22px;
}
/* =========================
MICROINTERAÇÕES PREMIUM
========================= */

.method-card,
.pillar-card,
.problem-card,
.timeline-card,
.strategy-card{
    transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.method-card:hover,
.pillar-card:hover,
.problem-card:hover,
.timeline-card:hover,
.strategy-card:hover{
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

/* BOTÕES */

.btn-primary,
.btn-secondary,
.cta-button{
    transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.btn-primary:hover,
.cta-button:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.btn-secondary:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.18);
}

/* MENU */

.nav-links a{
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 1px;
    background: #d9d2c5;
    transition: width 0.3s ease;
}

.nav-links a:hover::after{
    width: 100%;
}

/* WHATSAPP */

.whatsapp-float{
    transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-float:hover{
    transform: scale(1.06);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
/* =========================
RESPONSIVIDADE MOBILE
========================= */

@media (max-width: 768px){

    /* HERO */

    .hero{
        padding: 140px 24px 80px;
        min-height: auto;
    }

    .hero-container{
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: center;
    }

    .hero-content{
        max-width: 100%;
    }

    .hero h1{
        font-size: 4.2rem;
        line-height: 0.95;
        letter-spacing: -2px;
        margin-bottom: 28px;
    }

    .hero p{
        font-size: 1.8rem;
        line-height: 1.6;
    }

    .hero-buttons{
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .hero-buttons a{
        width: 100%;
        text-align: center;
    }

    /* DASHBOARD */

    .hero-dashboard{
        transform: scale(1);
    }

    .dashboard-card{
        max-width: 100%;
        padding: 22px;
    }

    /* LOBO HERO */

    .hero-wolf{
        opacity: 0.08;
        width: 320px;
        right: -80px;
        bottom: -40px;
    }

    /* TÍTULOS DAS SEÇÕES */

    .section-title,
    .pillars-section h2,
    .insights-section h2,
    .timeline-section h2,
    .cta-section h2{
        font-size: 3.6rem;
        line-height: 1.02;
    }

    /* GRIDS */

    .pillars-grid,
    .insights-grid,
    .process-timeline{
        grid-template-columns: 1fr;
    }

    /* CARDS */

    .pillar-card,
    .insight-card,
    .timeline-card{
        min-height: auto;
        padding: 30px;
    }

    /* SOBRE */

    .about-container{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* CTA FINAL */

    .cta-section{
        padding: 100px 24px;
    }

    .cta-section p{
        font-size: 1.7rem;
        line-height: 1.7;
    }

    /* WHATSAPP */

    .whatsapp-float{
        right: 18px;
        bottom: 18px;
        padding: 14px 20px;
        font-size: 1.4rem;
    }

}
/* CORREÇÃO MOBILE REAL DO HERO */

@media (max-width: 768px){

    .hero{
        padding: 24px 6% 60px !important;
        min-height: auto !important;
        overflow: hidden !important;
    }

    .hero-grid{
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding-top: 32px !important;
    }

    .hero-content h1{
        font-size: 48px !important;
        line-height: 0.98 !important;
        letter-spacing: -1.5px !important;
        max-width: 100% !important;
        margin-bottom: 22px !important;
    }

    .hero-content p{
        font-size: 16px !important;
        line-height: 1.55 !important;
        max-width: 100% !important;
    }

    .tag{
        font-size: 12px !important;
        padding: 10px 18px !important;
        margin-bottom: 24px !important;
        max-width: 260px !important;
    }

    .buttons{
        flex-direction: column !important;
        gap: 14px !important;
        margin-top: 28px !important;
    }

    .buttons a{
        width: 100% !important;
        text-align: center !important;
        padding: 16px 20px !important;
    }

    .hero-dashboard{
        transform: none !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .dashboard-card{
        max-width: 100% !important;
        padding: 22px !important;
        border-radius: 24px !important;
    }

    .executive-grid,
    .executive-footer{
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .executive-card,
    .executive-footer div{
        padding: 14px !important;
    }

    .chart-line{
        height: 110px !important;
    }

    .hero::after{
        width: 300px !important;
        height: 300px !important;
        right: -90px !important;
        top: 44% !important;
        opacity: 0.08 !important;
    }

    .whatsapp-float{
        right: 14px !important;
        bottom: 14px !important;
        padding: 12px 18px !important;
        font-size: 14px !important;
    }
}
@media (max-width: 768px){

    .hero-content h1{
        font-size: 42px !important;
        line-height: 1 !important;
        margin-bottom: 20px !important;
    }

    .hero-content p{
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    .hero-grid{
        padding-top: 18px !important;
        gap: 26px !important;
    }

    .dashboard-label{
        font-size: 10px !important;
        letter-spacing: 2px !important;
        margin-bottom: 18px !important;
    }

    .whatsapp-float{
        padding: 10px 15px !important;
        font-size: 13px !important;
        border-radius: 999px !important;
    }
}
@media (max-width: 768px){

    .dashboard-card{
        padding: 18px !important;
    }

    .executive-grid{
        gap: 10px !important;
        margin-bottom: 14px !important;
    }

    .executive-card{
        padding: 12px !important;
        border-radius: 18px !important;
    }

    .executive-card h3{
        font-size: 10px !important;
        margin-bottom: 10px !important;
    }

    .executive-card strong{
        font-size: 18px !important;
    }

    .chart-line{
        height: 80px !important;
        margin: 12px 0 !important;
    }

    .executive-footer{
        gap: 10px !important;
        margin-top: 14px !important;
    }

    .executive-footer div{
        padding: 12px !important;
    }

    .executive-footer strong{
        font-size: 18px !important;
    }
}
.contact-buttons{
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.contact-buttons .btn-primary,
.contact-buttons .btn-secondary{
    min-width: 230px;
    text-align: center;
}

@media (max-width: 768px){
    .contact-buttons{
        flex-direction: column;
        gap: 14px;
    }

    .contact-buttons .btn-primary,
    .contact-buttons .btn-secondary{
        width: 100%;
    }
}
.contact-form{
    width: 100%;
    max-width: 720px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 18px 22px;
    color: #f5f1e8;
    font-size: 1rem;
    outline: none;
    transition: 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: rgba(245,241,232,0.55);
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color: rgba(245,241,232,0.35);
    background: rgba(255,255,255,0.06);
}

.contact-form textarea{
    resize: vertical;
    min-height: 140px;
}

.contact-form button{
    width: 100%;
}
.email-modal{
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,0.62);
    backdrop-filter: blur(8px);
}

.email-modal.active{
    display: flex;
}

.email-modal-content{
    position: relative;
    width: 100%;
    max-width: 620px;
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(27,58,58,0.98), rgba(15,42,42,0.98));
    border: 1px solid rgba(238,233,223,0.14);
    box-shadow: 0 30px 80px rgba(0,0,0,0.38);
}

.email-modal-content h3{
    margin-bottom: 28px;
    font-size: 34px;
    color: var(--offwhite);
}

.email-modal-close{
    position: absolute;
    top: 18px;
    right: 22px;
    background: transparent;
    border: none;
    color: var(--offwhite);
    font-size: 32px;
    cursor: pointer;
}

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(238,233,223,0.16);
    background: rgba(255,255,255,0.04);
    color: var(--offwhite);
    font-size: 16px;
    outline: none;
}

.contact-form textarea{
    resize: vertical;
}