:root{
    --orange:#fd9c0d;
    --orange-dark:#d98200;

    --black:#070707;
    --dark:#101010;

    --white:#ffffff;
    --text:#151515;
    --muted:#5f5f5f;

    --cream:#fff7ec;
    --green-soft:#f3fff6;
    --blue-soft:#f1f6ff;
    --red-soft:#fff4f4;
    --gray-soft:#f7f8fa;

    --line:#ececec;
    --line-orange:rgba(253,156,13,.35);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--white);
    color:var(--text);
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(1180px,92%);
    margin:auto;
}

/* HEADER */

.site-header{
    position:sticky;
    top:0;
    z-index:99;
    background:rgba(7,7,7,.96);
    border-bottom:1px solid rgba(253,156,13,.28);
}

.header-content{
    height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.logo{
    font-size:25px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:-1px;
    color:#fff;
}

.logo span{
    color:var(--orange);
}

.menu{
    display:flex;
    align-items:center;
    gap:26px;
}

.menu a{
    color:#e5e5e5;
    font-size:14px;
    font-weight:700;
    transition:.25s;
}

.menu a:hover,
.menu a.active{
    color:var(--orange);
}

.btn-header,
.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:var(--orange);
    color:#111;
    padding:14px 24px;
    border-radius:999px;
    font-weight:900;
    border:1px solid var(--orange);
    transition:.25s;
}

.btn-header:hover,
.btn-primary:hover{
    background:#111;
    color:#fff;
    border-color:#111;
}

.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:var(--orange);
    border:1px solid var(--orange);
    padding:14px 24px;
    border-radius:999px;
    font-weight:900;
    transition:.25s;
}

.btn-outline:hover{
    background:var(--orange);
    color:#111;
}

.menu-toggle{
    display:none;
    background:none;
    border:0;
    color:var(--orange);
    font-size:31px;
    cursor:pointer;
}

/* HERO ESCURA */

.hero{
    background:
        linear-gradient(135deg,rgba(7,7,7,.96),rgba(16,16,16,.98)),
        radial-gradient(circle at right,rgba(253,156,13,.18),transparent 38%);
    color:#fff;
    padding:110px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:60px;
    align-items:center;
}

.tag,
.section-tag,
.page-hero span,
.section-title span{
    display:inline-block;
    color:var(--orange);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1.5px;
    margin-bottom:18px;
}

.hero h1{
    font-size:clamp(42px,6vw,78px);
    line-height:.98;
    text-transform:uppercase;
    letter-spacing:-3px;
    margin-bottom:24px;
    color:#fff;
}

.hero p{
    color:#d3d3d3;
    font-size:19px;
    line-height:1.75;
    max-width:640px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:34px;
}

.hero .btn-outline{
    color:#fff;
    border-color:rgba(255,255,255,.35);
}

.hero .btn-outline:hover{
    background:#fff;
    color:#111;
}

.hero-card{
    background:#151515;
    border:1px solid rgba(253,156,13,.35);
    border-radius:28px;
    padding:34px;
}

.hero-card h3{
    color:var(--orange);
    font-size:28px;
    margin-bottom:12px;
}

.hero-card p,
.hero-card li{
    color:#d4d4d4;
    line-height:1.8;
}

.hero-card ul{
    list-style:none;
    margin-top:18px;
}

/* QUEM SOMOS INDEX */

.about-home{
    background:#fff;
    color:var(--text);
    padding:100px 0;
}

.about-wrapper{
    position:relative;
}

.about-badge{
    width:fit-content;
    margin:0 auto 48px;
    padding:13px 22px;
    border-radius:999px;
    background:var(--cream);
    border:1px solid var(--line-orange);
    display:flex;
    align-items:center;
    gap:12px;
}

.about-badge span{
    color:var(--orange);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
}

.about-badge strong{
    color:var(--text);
    font-size:14px;
}

.about-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:60px;
    align-items:center;
}

.about-content h2{
    font-size:clamp(36px,5vw,62px);
    line-height:1.05;
    letter-spacing:-2px;
    margin:10px 0 26px;
    color:var(--text);
}

.about-content p{
    color:var(--muted);
    font-size:18px;
    line-height:1.85;
    margin-bottom:16px;
    max-width:680px;
}

.about-numbers{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin-top:32px;
}

.about-numbers div{
    border:1px solid var(--line);
    border-radius:20px;
    padding:20px;
}

.about-numbers div:nth-child(1){
    background:var(--cream);
}

.about-numbers div:nth-child(2){
    background:var(--green-soft);
}

.about-numbers div:nth-child(3){
    background:var(--blue-soft);
}

.about-numbers strong{
    display:block;
    color:var(--orange);
    font-size:32px;
    font-weight:900;
    margin-bottom:6px;
}

.about-numbers span{
    color:#444;
    font-size:14px;
}

.about-buttons{
    margin-top:34px;
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.about-panel{
    background:#fafafa;
    border:1px solid var(--line-orange);
    border-radius:30px;
    padding:30px;
}

.panel-top{
    padding-bottom:22px;
    margin-bottom:22px;
    border-bottom:1px solid var(--line);
}

.panel-top span{
    color:var(--orange);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.panel-top strong{
    display:block;
    color:var(--text);
    font-size:28px;
    margin-top:8px;
}

.about-feature-card{
    display:flex;
    gap:16px;
    align-items:flex-start;
    padding:18px;
    border-radius:20px;
    border:1px solid var(--line);
    margin-bottom:14px;
    transition:.25s;
}

.about-feature-card:nth-child(2){
    background:var(--cream);
}

.about-feature-card:nth-child(3){
    background:var(--green-soft);
}

.about-feature-card:nth-child(4){
    background:var(--blue-soft);
}

.about-feature-card:nth-child(5){
    background:var(--red-soft);
}

.about-feature-card:hover,
.about-feature-card.active{
    border-color:var(--orange);
    transform:translateY(-3px);
}

.feature-icon,
.service-icon,
.icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:17px;
    background:rgba(253,156,13,.13);
    color:var(--orange);
    display:grid;
    place-items:center;
    font-size:24px;
}

.about-feature-card strong{
    display:block;
    color:var(--text);
    font-size:18px;
    margin-bottom:6px;
}

.about-feature-card span{
    color:#555;
    line-height:1.6;
    font-size:15px;
}

/* SERVIÇOS INDEX ESTILO APP */

.app-services{
    background:var(--cream);
    color:var(--text);
    padding:110px 0;
}

.app-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:50px;
    align-items:center;
}

.app-left h2{
    font-size:clamp(38px,5vw,60px);
    line-height:1.08;
    letter-spacing:-2px;
    font-weight:600;
    margin-bottom:26px;
    color:var(--text);
}

.app-left p{
    color:var(--muted);
    font-size:18px;
    line-height:1.85;
    max-width:520px;
}

.app-center{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.orange-bg{
    position:absolute;
    width:300px;
    height:300px;
    background:var(--orange);
    border-radius:32px;
}

.phone{
    position:relative;
    z-index:2;
    width:310px;
    height:610px;
    background:#07172a;
    border:8px solid #202020;
    border-radius:52px;
    overflow:hidden;
}

.phone-top{
    position:absolute;
    top:14px;
    left:50%;
    transform:translateX(-50%);
    width:116px;
    height:28px;
    border-radius:999px;
    background:#000;
}

.phone-content{
    padding:78px 24px 28px;
}

.app-logo{
    text-align:center;
    color:#fff;
    font-size:31px;
    font-weight:900;
    margin-bottom:12px;
}

.app-logo span{
    color:var(--orange);
}

.app-subtitle{
    color:#d8d8d8;
    text-align:center;
    margin-bottom:25px;
}

.big-service{
    background:var(--orange);
    color:#111;
    font-size:26px;
    font-weight:900;
    text-align:center;
    padding:27px;
    border-radius:18px;
    margin-bottom:16px;
}

.mini-services{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.mini-services div{
    background:var(--orange);
    color:#111;
    border-radius:14px;
    text-align:center;
    padding:18px 8px;
    font-size:13px;
    font-weight:900;
}

.app-right{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.service-box{
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    padding:24px;
    display:flex;
    align-items:center;
    gap:18px;
    transition:.25s;
}

.service-box:hover{
    border-color:var(--orange);
    transform:translateY(-3px);
}

.service-box span{
    color:var(--text);
    font-size:20px;
    font-weight:700;
}

/* SEÇÕES GERAIS */

.section{
    background:var(--gray-soft);
    color:var(--text);
    padding:90px 0;
}

.content-section{
    background:#fff;
    color:var(--text);
    padding:90px 0;
}

.contact-section{
    background:var(--cream);
    color:var(--text);
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h2{
    font-size:clamp(32px,4vw,52px);
    line-height:1.1;
    letter-spacing:-2px;
    color:var(--text);
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.card{
    border:1px solid var(--line);
    border-radius:22px;
    padding:28px;
    transition:.25s;
}

.cards .card:nth-child(3n+1){
    background:var(--cream);
}

.cards .card:nth-child(3n+2){
    background:var(--green-soft);
}

.cards .card:nth-child(3n+3){
    background:var(--blue-soft);
}

.card:hover{
    border-color:var(--orange);
    transform:translateY(-4px);
}

.card h3{
    color:var(--text);
    font-size:22px;
    margin:18px 0 10px;
}

.card p{
    color:var(--muted);
    line-height:1.7;
}

.card.small h3{
    color:var(--orange);
    font-size:18px;
    margin:0;
}

/* CTA */

.cta{
    background:var(--orange);
    color:#111;
    padding:80px 0;
    text-align:center;
}

.cta h2{
    font-size:clamp(34px,4vw,50px);
    margin-bottom:12px;
}

.cta p{
    font-size:18px;
    color:#222;
}

.cta .btn-primary{
    margin-top:24px;
    background:#111;
    color:#fff;
    border-color:#111;
}

.cta .btn-primary:hover{
    background:#fff;
    color:#111;
    border-color:#fff;
}

/* PÁGINAS INTERNAS */

.page-hero{
    background:#101010;
    color:#fff;
    padding:95px 0;
    border-bottom:1px solid rgba(253,156,13,.28);
}

.page-hero h1{
    font-size:clamp(42px,6vw,72px);
    line-height:1;
    text-transform:uppercase;
    letter-spacing:-3px;
    color:#fff;
}

.text-content{
    max-width:900px;
}

.text-content p{
    color:#444;
    font-size:19px;
    line-height:1.9;
    margin-bottom:22px;
}

.values-grid,
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.info-box{
    border:1px solid var(--line);
    border-radius:24px;
    padding:34px;
}

.values-grid .info-box:nth-child(1){
    background:var(--cream);
}

.values-grid .info-box:nth-child(2){
    background:var(--blue-soft);
}

.info-box h2{
    color:var(--text);
    margin-bottom:14px;
}

.info-box p{
    color:var(--muted);
    line-height:1.8;
}

.contact-grid h2{
    font-size:clamp(32px,4vw,46px);
    line-height:1.1;
    margin-bottom:18px;
    color:var(--text);
}

.contact-grid p{
    color:var(--muted);
    line-height:1.8;
}

.contact-info{
    margin:26px 0;
}

.form{
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    padding:28px;
}

.form input,
.form textarea{
    width:100%;
    margin-bottom:14px;
    padding:16px;
    border-radius:14px;
    border:1px solid #ddd;
    background:#fff;
    color:var(--text);
    outline:none;
}

.form input::placeholder,
.form textarea::placeholder{
    color:#777;
}

.form input:focus,
.form textarea:focus{
    border-color:var(--orange);
}

.form textarea{
    min-height:130px;
    resize:vertical;
}

.form button{
    width:100%;
    border:none;
    padding:16px;
    border-radius:999px;
    background:var(--orange);
    color:#111;
    font-weight:900;
    cursor:pointer;
    transition:.25s;
}

.form button:hover{
    background:#111;
    color:#fff;
}

/* FOOTER */

.footer{
    background:#070707;
    color:#fff;
    border-top:1px solid rgba(253,156,13,.28);
    padding-top:55px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:34px;
}

.footer h3,
.footer h4{
    color:var(--orange);
    margin-bottom:14px;
}

.footer p,
.footer a{
    display:block;
    color:#b9b9b9;
    margin-bottom:10px;
    line-height:1.6;
}

.copy{
    text-align:center;
    color:#888;
    padding:24px;
    margin-top:38px;
    border-top:1px solid rgba(255,255,255,.08);
}

/* WHATSAPP */

.whatsapp-float{
    position:fixed;
    right:24px;
    bottom:24px;
    width:60px;
    height:60px;
    background:var(--orange);
    color:#111;
    border-radius:50%;
    display:grid;
    place-items:center;
    font-size:28px;
    z-index:100;
}

/* RESPONSIVO */

@media(max-width:1100px){
    .hero-grid,
    .about-grid,
    .app-grid,
    .values-grid,
    .contact-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .app-grid,
    .about-content{
        text-align:center;
    }

    .app-left p,
    .about-content p,
    .about-content h2{
        margin-left:auto;
        margin-right:auto;
    }

    .about-buttons,
    .hero-buttons{
        justify-content:center;
    }

    .app-right{
        max-width:620px;
        margin:auto;
        width:100%;
    }
}

@media(max-width:900px){
    .menu{
        position:absolute;
        top:82px;
        left:0;
        width:100%;
        background:#070707;
        display:none;
        flex-direction:column;
        padding:24px;
        border-bottom:1px solid rgba(253,156,13,.28);
    }

    .menu.show{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

    .btn-header{
        display:none;
    }

    .cards{
        grid-template-columns:1fr;
    }
}

@media(max-width:650px){
    .hero,
    .about-home,
    .app-services,
    .section,
    .content-section,
    .contact-section{
        padding:70px 0;
    }

    .header-content{
        height:76px;
    }

    .menu{
        top:76px;
    }

    .logo{
        font-size:21px;
    }

    .hero h1,
    .page-hero h1{
        letter-spacing:-1.5px;
    }

    .about-badge{
        flex-direction:column;
        border-radius:18px;
        text-align:center;
        margin-bottom:35px;
    }

    .about-numbers{
        grid-template-columns:1fr;
    }

    .about-panel{
        padding:22px;
        border-radius:24px;
    }

    .about-feature-card{
        transform:none !important;
    }

    .phone{
        width:280px;
        height:560px;
    }

    .orange-bg{
        width:245px;
        height:245px;
    }

    .phone-content{
        padding:72px 20px 24px;
    }

    .app-logo{
        font-size:27px;
    }

    .big-service{
        font-size:22px;
    }

    .service-box{
        padding:20px;
    }

    .service-box span{
        font-size:18px;
    }

    .hero-buttons,
    .about-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
    }
}
/* =========================
TOP INFO BAR
========================= */

.top-info-bar{
    background:#0b0b0b;
    border-top:1px solid rgba(255,255,255,.05);
    border-bottom:1px solid rgba(255,255,255,.05);
    padding:28px 0;
}

.top-info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:center;
}

.top-info-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    color:#fff;
    font-size:20px;
    font-weight:700;
    text-align:center;
}

.top-info-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(253,156,13,.08);
    color:#fd9c0d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

/* RESPONSIVO */

@media(max-width:900px){

    .top-info-grid{
        grid-template-columns:1fr 1fr;
        gap:22px;
    }

    .top-info-item{
        justify-content:flex-start;
        font-size:17px;
    }

}

@media(max-width:600px){

    .top-info-bar{
        padding:22px 0;
    }

    .top-info-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .top-info-item{
        justify-content:center;
        font-size:16px;
    }

}
.phone-site{
    background:#07172a;
}

.phone-screen{
    width:100%;
    height:100%;
    padding:58px 12px 18px;
}

.phone-screen img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:34px;
}
/* =========================
PÁGINA QUEM SOMOS ESCURA
========================= */

.about-page-hero{
    background:linear-gradient(135deg,#18120f,#101010);
    color:#fff;
    padding:90px 0 80px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.about-page-hero h1{
    font-size:clamp(48px,6vw,78px);
    line-height:1;
    color:#fff;
    margin-bottom:18px;
    letter-spacing:-2px;
    font-weight:900;
}

.about-page-hero p{
    color:#d8d8d8;
    font-size:20px;
    line-height:1.5;
    max-width:680px;
}

.about-page{
    background:#090909;
    color:#fff;
    padding:105px 0;
}

.about-page-grid{
    display:grid;
    grid-template-columns:1.5fr .8fr;
    gap:80px;
    align-items:center;
}

.about-page-text p{
    color:#f2f2f2;
    font-size:18px;
    line-height:1.8;
    margin-bottom:26px;
    font-weight:600;
}

.about-page-text strong{
    color:#fd9c0d;
    font-weight:900;
}

.about-page-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:38px;
}

.btn-whatsapp{
    background:#25d366;
    color:#fff;
    padding:17px 26px;
    border-radius:10px;
    font-weight:900;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn-dark-outline{
    color:#fff;
    border:1px solid #fd5a0d;
    padding:17px 26px;
    border-radius:10px;
    font-weight:900;
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

.btn-dark-outline:hover{
    background:#fd5a0d;
    color:#111;
}

.about-page-cards{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.about-mini-card{
    background:#181818;
    border:1px solid rgba(255,255,255,.1);
    border-radius:16px;
    padding:24px;
    display:flex;
    align-items:center;
    gap:18px;
}

.about-mini-icon{
    width:48px;
    height:48px;
    min-width:48px;
    border-radius:12px;
    border:1px solid rgba(253,90,13,.45);
    background:rgba(253,90,13,.08);
    color:#fd5a0d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
}

.about-mini-card strong{
    color:#fff;
    display:block;
    font-size:17px;
    margin-bottom:5px;
}

.about-mini-card span{
    color:#c9c9c9;
    line-height:1.5;
    font-size:15px;
}

@media(max-width:950px){
    .about-page-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .about-page{
        padding:75px 0;
    }
}

@media(max-width:600px){
    .about-page-hero{
        padding:70px 0;
    }

    .about-page-text p{
        font-size:16px;
    }

    .about-page-buttons{
        flex-direction:column;
    }

    .btn-whatsapp,
    .btn-dark-outline{
        width:100%;
    }
}
.whatsapp-float{
    position:fixed;
    right:24px;
    bottom:24px;
    width:58px;
    height:58px;
    background:#25d366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:999;
    box-shadow:0 10px 30px rgba(37,211,102,.35);
}

.whatsapp-float:hover{
    background:#1ebe5d;
    transform:scale(1.05);
}
/* =========================
AGENDAMENTO TRANSPORTE
========================= */

.schedule-section{
    background:
    linear-gradient(135deg,#101010,#070707);

    color:#fff;
    padding:110px 0;
}

.schedule-grid{
    display:grid;
    grid-template-columns:1fr .95fr;
    gap:70px;
    align-items:center;
}

/* CONTENT */

.schedule-content h2{
    font-size:clamp(38px,5vw,64px);
    line-height:1.05;
    letter-spacing:-2px;
    margin:18px 0 26px;
    max-width:700px;
}

.schedule-content p{
    color:#cfcfcf;
    font-size:18px;
    line-height:1.85;
    max-width:620px;
}

/* BENEFITS */

.schedule-benefits{
    margin-top:38px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.schedule-benefit{
    display:flex;
    align-items:center;
    gap:16px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:18px 20px;
}

.schedule-icon{
    width:48px;
    height:48px;
    border-radius:14px;
    background:rgba(253,156,13,.12);
    color:#fd9c0d;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.schedule-benefit span{
    color:#fff;
    font-size:17px;
    font-weight:700;
}

/* FORM */

.schedule-form-box{
    background:#151515;
    border:1px solid rgba(253,156,13,.25);
    border-radius:30px;
    padding:34px;
}

.schedule-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-group label{
    color:#fff;
    font-size:14px;
    font-weight:700;
}

.schedule-form input,
.schedule-form select,
.schedule-form textarea{
    width:100%;
    background:#0f0f0f;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:16px;
    color:#fff;
    font-size:15px;
    outline:none;
}

.schedule-form input:focus,
.schedule-form select:focus,
.schedule-form textarea:focus{
    border-color:#fd9c0d;
}

.schedule-form textarea{
    height:120px;
    resize:none;
}

.schedule-form button{
    margin-top:8px;
    width:100%;
    border:none;
    background:#fd9c0d;
    color:#111;
    padding:18px;
    border-radius:999px;
    font-size:16px;
    font-weight:900;
    cursor:pointer;
    transition:.25s;
}

.schedule-form button:hover{
    background:#fff;
}

/* RESPONSIVO */

@media(max-width:1000px){

    .schedule-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .schedule-content{
        text-align:center;
    }

    .schedule-content p,
    .schedule-content h2{
        margin-left:auto;
        margin-right:auto;
    }

}

@media(max-width:650px){

    .schedule-section{
        padding:75px 0;
    }

    .schedule-content h2{
        font-size:38px;
    }

    .schedule-form-box{
        padding:24px;
        border-radius:24px;
    }

}

/* =========================
HEADER DINÂMICA
========================= */

.logo-image{
    display:flex;
    align-items:center;
}

.logo-image img{
    max-height:58px;
    width:auto;
    object-fit:contain;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.header-phone{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:14px;
    font-weight:700;
}

.header-phone i{
    color:#fd9c0d;
    font-size:16px;
}

.btn-header{
    gap:8px;
}

.btn-header i{
    font-size:17px;
}

@media(max-width:900px){

    .header-actions{
        display:none;
    }

    .logo-image img{
        max-height:48px;
    }

}
/* =========================
HEADER
========================= */

.site-header{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(7,7,7,.96);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(253,156,13,.15);
}

.header-content{
    height:84px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

/* LOGO */

.logo-image{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo-image img{
    width:auto;
    max-height:60px;
    object-fit:contain;
    display:block;
}

/* MENU */

.menu{
    display:flex;
    align-items:center;
    gap:26px;
}

.menu a{
    color:#efefef;
    font-size:14px;
    font-weight:700;
    transition:.25s;
    position:relative;
}

.menu a:hover,
.menu a.active{
    color:#fd9c0d;
}

.menu a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:2px;
    background:#fd9c0d;
    border-radius:999px;
}

/* ACTIONS */

.header-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

.header-phone{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:14px;
    font-weight:700;
}

.header-phone i{
    color:#fd9c0d;
    font-size:16px;
}

.btn-header{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:#fd9c0d;
    color:#111;
    padding:13px 22px;
    border-radius:999px;
    font-weight:900;
    transition:.25s;
}

.btn-header:hover{
    background:#fff;
}

/* MOBILE */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#fd9c0d;
    font-size:30px;
    cursor:pointer;
}

@media(max-width:980px){

    .header-actions{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .menu{
        position:absolute;
        top:84px;
        left:0;
        width:100%;
        background:#0b0b0b;
        display:none;
        flex-direction:column;
        padding:24px;
        border-bottom:1px solid rgba(253,156,13,.12);
    }

    .menu.show{
        display:flex;
    }

    .menu a{
        width:100%;
        padding:14px 0;
        border-bottom:1px solid rgba(255,255,255,.05);
    }

    .menu a.active::after{
        display:none;
    }

}

@media(max-width:600px){

    .header-content{
        height:76px;
    }

    .menu{
        top:76px;
    }

    .logo-image img{
        max-height:50px;
    }

}
.hero-dynamic{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    color:#fff;
}

.hero-bg,
.hero-video,
.hero-overlay{
    position:absolute;
    inset:0;
}

.hero-bg{
    background-size:cover;
    background-position:center;
    z-index:1;
}

.hero-video{
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:2;
}

.hero-overlay{
    z-index:3;
}

.hero-dynamic .hero-grid{
    position:relative;
    z-index:5;
}

.hero-dynamic .hero-content{
    max-width:720px;
}

.hero-dynamic h1{
    font-size:clamp(54px,7vw,110px);
    line-height:.95;
    margin:20px 0;
    font-weight:900;
    letter-spacing:-4px;
}

.hero-dynamic p{
    font-size:20px;
    line-height:1.8;
    color:#ededed;
    max-width:620px;
}
/* =========================
HOME HERO DINÂMICA
========================= */

.home-hero{
    position:relative;
    min-height:calc(100vh - 84px);
    display:flex;
    align-items:center;
    overflow:hidden;
    color:#fff;
    background:#070707;
}

.home-hero-bg,
.home-hero-video,
.home-hero-overlay{
    position:absolute;
    inset:0;
}

.home-hero-bg{
    background-size:cover;
    background-position:center;
    z-index:1;
}

.home-hero-video{
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.home-hero-overlay{
    z-index:2;
}

.home-hero-content{
    position:relative;
    z-index:5;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
    padding:120px 0;
}

.home-hero-tag{
    color:#fd9c0d;
    font-weight:900;
    font-size:14px;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.home-hero-text h1{
    font-size:clamp(46px,7vw,92px);
    line-height:.95;
    letter-spacing:-4px;
    margin:22px 0;
    color:#fff;
    max-width:820px;
}

.home-hero-text p{
    color:#f1f1f1;
    font-size:20px;
    line-height:1.75;
    max-width:680px;
}

.home-hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:34px;
}

.btn-hero-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:999px;
    color:#fff;
    border:1px solid rgba(255,255,255,.45);
    font-weight:900;
    transition:.25s;
}

.btn-hero-outline:hover{
    background:#fff;
    color:#111;
}

.home-hero-card{
    background:rgba(10,10,10,.72);
    border:1px solid rgba(253,156,13,.35);
    border-radius:28px;
    padding:34px;
    backdrop-filter:blur(8px);
}

.home-hero-card span{
    color:#fd9c0d;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.home-hero-card h3{
    color:#fff;
    font-size:30px;
    margin:12px 0 20px;
}

.home-hero-card ul{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.home-hero-card li{
    color:#e7e7e7;
    font-size:16px;
    display:flex;
    align-items:center;
    gap:10px;
}

.home-hero-card i{
    color:#fd9c0d;
}

@media(max-width:950px){
    .home-hero-content{
        grid-template-columns:1fr;
        padding:90px 0;
    }

    .home-hero-card{
        max-width:520px;
    }
}

@media(max-width:650px){
    .home-hero{
        min-height:auto;
    }

    .home-hero-content{
        padding:75px 0;
    }

    .home-hero-text h1{
        font-size:44px;
        letter-spacing:-2px;
    }

    .home-hero-text p{
        font-size:17px;
    }

    .home-hero-buttons{
        flex-direction:column;
    }

    .home-hero-buttons a{
        width:100%;
    }

    .home-hero-card{
        padding:24px;
        border-radius:22px;
    }
}
.home-hero-text h1 span{
    color:#fd9c0d;
    display:inline-block;
}