:root{
    --primary-color: #1d1d1d;
    --secondary-color: #ff4800;
    --white-primary: #fff;
    --text-dark: #636363;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body{
    font-family: "Roboto", sans-serif;
    background-color: var(--primary-color);
    color: var(--white-primary);
    scroll-behavior: smooth;
}

.container{
    width: min(1180px, 88%);
    margin: 0 auto;
}

.hero{
    position: relative;
    height: 95vh;
    overflow: hidden;
    background: radial-gradient(circle at center, #333 0%, #111 55%, #050505 100%);
    
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.35), rgba(0,0,0,.9)),
        radial-gradient(circle at 70% 40%, rgba(255,72,0,.28), transparent 35%);
    z-index: 1;
}

.navbar{
    position: relative;
    width: 100%;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
}


.logo{
    width: 150px;
    animation: fadeDown .8s ease forwards;
}

.menu-desktop{
    display: flex;
    align-items: center;
    gap: 38px;
    list-style: none;
}

.menu-desktop li{
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    cursor: pointer;
    position: relative;
    transition: .35s ease;
}

.menu-desktop li:not(.nav-cta)::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: .35s ease;
}

.menu-desktop li:hover{
    color: var(--secondary-color);
}

.menu-desktop li:hover::after{
    width: 100%;
}

.hamburger {
    width: 40px;
    height: 40px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 9999;
}

.hamburger span {
    position: absolute;
    left: 50%;
    width: 30px;
    height: 3px;
    background: #fff;
    transition: .3s ease;
    transform: translateX(-50%);
}

.hamburger span:first-child {
    top: 14px;
}

.hamburger span:last-child {
    top: 24px;
}

.hamburger{
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    cursor: pointer;
    position: relative;
    z-index: 99999;
}

.hamburger span{
    position: absolute;
    left: 50%;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: .35s ease;
    transform: translateX(-50%);
}

.hamburger span:first-child{
    top: 20px;
}

.hamburger span:last-child{
    top: 30px;
}

.hamburger.active span:first-child{
    top: 25px;
    transform: translateX(-50%) rotate(45deg);
}

.hamburger.active span:last-child{
    top: 25px;
    transform: translateX(-50%) rotate(-45deg);
}

.menu-fullscreen{
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,.96);
    backdrop-filter: blur(18px);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .45s ease;
}

.menu-fullscreen.active{
    opacity: 1;
    pointer-events: all;
}

.menu-close{
    position: fixed;
    top: 26px;
    right: 26px;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 99999;
}

@media(max-width: 900px){
    .hamburger{
        display: block;
    }

    .menu-desktop,
    .social-media{
        display: none;
    }
}

.nav-cta{
    padding: 14px 24px;
    border: 1px solid rgba(255,72,0,.8);
    border-radius: 100px;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary-color), #ff7a00);
    box-shadow: 0 0 30px rgba(255,72,0,.35);
}

.nav-cta:hover{
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(255,72,0,.65);
}

.social-media{
    display: flex;
    gap: 18px;
    font-size: 20px;
}

.social-media i{
    cursor: pointer;
    transition: .35s ease;
}

.social-media i:hover{
    color: var(--secondary-color);
    transform: translateY(-4px) scale(1.08);
}

.chamada1{
    position: relative;
    z-index: 2;
    min-height: calc(90vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 920px;
    animation: fadeUp 1s ease forwards;
}

.eyebrow{
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 22px;
}

.chamada1 h1{
    font-size: 3em;
    line-height: .95;
    letter-spacing: -3px;
    max-width: 1050px;
    line-height: 50px;
}

.chamada1 h1 strong{
    display: block;
    color: var(--secondary-color);
    text-shadow: 0 0 40px rgba(255,72,0,.35);
}

.chamada1 p{
    margin-top: 30px;
    max-width: 720px;
    font-size: 1em;
    line-height: 1.65;
    color: rgba(255,255,255,.78);
}

.hero-button{
    margin-top: 42px;
    width: fit-content;
    padding: 18px 34px;
    border-radius: 100px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .5px;
    box-shadow: 0 0 35px rgba(255,72,0,.45);
    transition: .35s ease;
}

.hero-button:hover{
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 60px rgba(255,72,0,.75);
}

.hamburger{
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(12px);
    cursor: pointer;
    z-index: 40;
}



.hamburger.active span:first-child{
    transform: translateY(4px) rotate(45deg);
}

.hamburger.active span:last-child{
    transform: translateY(-4px) rotate(-45deg);
}

.menu-fullscreen{
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,.96);
    backdrop-filter: blur(18px);
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .45s ease;
}

.menu-fullscreen.active{
    opacity: 1;
    pointer-events: all;
}

.menu-fullscreen ul{
    list-style: none;
    text-align: center;
}

.menu-fullscreen li{
    font-size: clamp(38px, 8vw, 90px);
    font-weight: 900;
    letter-spacing: -3px;
    margin: 12px 0;
    cursor: pointer;
    transition: .35s ease;
}

.menu-fullscreen li:hover{
    color: var(--secondary-color);
    transform: scale(1.04);
    text-shadow: 0 0 40px rgba(255,72,0,.5);
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown{
    from{
        opacity: 0;
        transform: translateY(-25px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-desktop a,
.menu-fullscreen a,
.social-media a{
    color: inherit;
    text-decoration: none;
}

.scroll-indicator{
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    z-index: 5;
    width: 34px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .85;
    transition: .35s ease;
}

.scroll-indicator:hover{
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

.mouse{
    width: 28px;
    height: 40px;
    border: 2px solid rgba(255,255,255,.75);
    border-radius: 100px;
    position: relative;
}

.wheel{
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 20px;
    transform: translate(-50%, 0);
    animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll{
    0%{
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    35%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.footer{
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,72,0,.18), transparent 32%),
        linear-gradient(180deg, #111 0%, #070707 100%);
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-glow{
    position: absolute;
    right: -180px;
    top: -180px;
    width: 420px;
    height: 420px;
    background: rgba(255,72,0,.18);
    filter: blur(95px);
    border-radius: 50%;
    animation: footerGlow 5s ease-in-out infinite alternate;
}

.footer-container{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr .8fr .9fr 1.2fr;
    gap: 55px;
    padding-bottom: 70px;
}

.footer-logo{
    width: 145px;
    margin-bottom: 26px;
    animation: footerFloat 3.5s ease-in-out infinite;
}

.footer-brand p,
.footer-contact p{
    color: rgba(255,255,255,.68);
    line-height: 1.7;
    font-size: .98em;
    max-width: 360px;
}

.footer-social{
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.footer-social a{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    transition: .35s ease;
}

.footer-social a:hover{
    color: var(--secondary-color);
    transform: translateY(-6px) scale(1.08);
    border-color: rgba(255,72,0,.55);
    box-shadow: 0 0 35px rgba(255,72,0,.28);
}

.footer h3{
    font-size: .95em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: #fff;
}

.footer ul{
    list-style: none;
}

.footer li{
    color: rgba(255,255,255,.62);
    margin-bottom: 14px;
    font-size: .96em;
    transition: .35s ease;
}

.footer li:hover{
    color: var(--secondary-color);
    transform: translateX(7px);
}

.footer a{
    color: inherit;
    text-decoration: none;
}

.footer-button{
    display: inline-flex;
    margin-top: 28px;
    padding: 16px 28px;
    border-radius: 100px;
    background: var(--secondary-color);
    color: #fff !important;
    font-weight: 800;
    box-shadow: 0 0 35px rgba(255,72,0,.35);
    transition: .35s ease;
}

.footer-button:hover{
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 60px rgba(255,72,0,.65);
}

.footer-bottom{
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
    background: rgba(0,0,0,.25);
}

.footer-bottom-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom span{
    color: rgba(255,255,255,.48);
    font-size: .88em;
}

@keyframes footerGlow{
    from{
        opacity: .35;
        transform: scale(1);
    }

    to{
        opacity: .8;
        transform: scale(1.18);
    }
}

@keyframes footerFloat{
    0%, 100%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-8px);
    }
}

.parceiros{
    position: relative;
    overflow: hidden;
    padding: 110px 0 90px;
    background:
        radial-gradient(circle at center, rgba(255,72,0,.08), transparent 28%),
        linear-gradient(180deg, #080808 0%, #111 45%, #080808 100%);
}

.parceiros::before,
.parceiros::after{
    content: "";
    position: absolute;
    top: 0;
    width: 22%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.parceiros::before{
    left: 0;
    background: linear-gradient(90deg, #080808 0%, transparent 100%);
}

.parceiros::after{
    right: 0;
    background: linear-gradient(270deg, #080808 0%, transparent 100%);
}

.parceiros-header{
    text-align: center;
    margin-bottom: 85px;
}

.parceiros-header span{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 7px;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.parceiros-header span::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 0 18px rgba(255,72,0,.9);
}

.parceiros-header h2{
    font-size: clamp(2rem, 4vw, 4.5rem);
    line-height: .95;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--white-primary);
}

.logos-wrapper{
    position: relative;
    z-index: 2;
    display: grid;
    gap: 42px;
}

.logos-row{
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.logos-track{
    display: flex;
    align-items: center;
    width: max-content;
    gap: 95px;
    will-change: transform;
}

.logos-track img{
    height: 58px;
    max-width: 180px;
    object-fit: contain;
    opacity: .23;
    filter: grayscale(1) brightness(.7);
    transition: transform .45s ease, opacity .45s ease, filter .45s ease;
}

.logos-track img:hover{
    transform: scale(1.22);
    opacity: 1;
    filter:
        grayscale(1)
        brightness(1.8)
        drop-shadow(0 0 18px rgba(255,255,255,.55))
        drop-shadow(0 0 34px rgba(255,72,0,.22));
}

.logos-left .logos-track{
    animation: moveLeft 28s linear infinite;
}

.logos-right .logos-track{
    animation: moveRight 32s linear infinite;
}

.logos-row:hover .logos-track{
    animation-play-state: paused;
}

.parceiros-cta{
    position: relative;
    z-index: 6;
    display: flex;
    justify-content: center;
    margin-top: 85px;
}

.parceiros-cta a{
    color: #d8dce8;
    text-decoration: none;
    border: 2px solid rgba(216,220,232,.65);
    border-radius: 999px;
    padding: 22px 38px;
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 900;
    transition: .35s ease;
}

.parceiros-cta a:hover{
    color: #fff;
    border-color: var(--secondary-color);
    background: rgba(255,72,0,.08);
    box-shadow: 0 0 35px rgba(255,72,0,.25);
    transform: translateY(-4px);
}

@keyframes moveLeft{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}

@keyframes moveRight{
    from{
        transform: translateX(-50%);
    }
    to{
        transform: translateX(0);
    }
}

.riscos{
    padding: 90px 0;
    background: #080808;
    position: relative;
    overflow: hidden;
}

.riscos::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .35;
    pointer-events: none;
}

.riscos-grid{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.risco-card{
    position: relative;
    min-height: 178px;
    padding: 34px 32px;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
    overflow: hidden;
    transition: .35s ease;
}

.risco-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,72,0,.18), transparent 35%);
    opacity: 0;
    transition: .35s ease;
}

.risco-card:hover{
    transform: translateY(-8px);
    border-color: rgba(255,72,0,.45);
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
}

.risco-card:hover::before{
    opacity: 1;
}

.risco-card i{
    position: absolute;
    right: 28px;
    top: 24px;
    font-size: 30px;
    color: rgba(255,255,255,.08);
    transition: .35s ease;
}

.risco-card:hover i{
    color: rgba(255,72,0,.7);
    transform: scale(1.15) rotate(-6deg);
    filter: drop-shadow(0 0 18px rgba(255,72,0,.35));
}

.risco-card h3{
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 18px;
    color: var(--white-primary);
}

.risco-card p{
    position: relative;
    z-index: 2;
    max-width: 310px;
    font-size: .94rem;
    line-height: 1.75;
    color: #b8c6d8;
}

.riscos-frase{
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 38px;
}

.riscos-frase p{
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.5;
    color: var(--white-primary);
}

.riscos-frase strong{
    display: inline-block;
    padding: 4px 12px;
    color: #fff;
    background: rgba(255,72,0,.18);
    box-shadow: inset 0 -2px 0 var(--secondary-color);
}


.autoridade{
    position: relative;
    padding: 110px 0;
    background: #060606;
    overflow: hidden;
}

.autoridade::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .3;
    pointer-events: none;
}

.autoridade-grid{
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 540px;

    gap: 80px;
    align-items: center;
}

.autoridade-content{
    max-width: 600px;
}

.mini-tag{
    display: inline-block;
    margin-bottom: 30px;

    font-size: 11px;
    letter-spacing: 6px;

    color: var(--secondary-color);
}

.autoridade-content h2{
    max-width: 600px;

    font-size: clamp(2.8rem, 4vw, 4.1rem);
    line-height: 1.03;
    letter-spacing: -2px;
    font-weight: 900;

    margin-bottom: 34px;

    color: #fff;
}

.autoridade-content h2 span{
    display: block;

    margin-top: 10px;

    font-size: .72em;
    line-height: 1.08;

    color: #7f7f7f;
}

.autoridade-content .descricao{
    max-width: 520px;

    font-size: 1rem;
    line-height: 1.8;

    color: #c4cfdd;

    margin-bottom: 30px;
}

.quote-box{
    display: flex;
    align-items: flex-start;
    gap: 20px;

    max-width: 520px;
}

.quote-box .line{
    min-width: 2px;
    height: 90px;

    background: linear-gradient(
        to bottom,
        var(--secondary-color),
        transparent
    );
}

.quote-box p{
    font-size: 1rem;
    line-height: 1.9;

    color: #92a0b5;
}

.autoridade-cards{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.autoridade-card{
    position: relative;

    display: flex;
    align-items: center;
    gap: 24px;

    padding: 34px;

    border: 1px solid rgba(255,255,255,.08);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.025),
            rgba(255,255,255,.01)
        );

    transition: .35s ease;

    overflow: hidden;
}

.autoridade-card::before{
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at left center,
            rgba(255,72,0,.12),
            transparent 40%
        );

    opacity: 0;

    transition: .35s ease;
}

.autoridade-card:hover{
    transform: translateY(-6px);

    border-color: rgba(255,72,0,.35);

    box-shadow: 0 20px 50px rgba(0,0,0,.45);
}

.autoridade-card:hover::before{
    opacity: 1;
}

.icon{
    position: relative;
    z-index: 2;

    min-width: 70px;
    min-height: 70px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);

    display: flex;
    align-items: center;
    justify-content: center;

    background: #090909;
}

.icon i{
    font-size: 1.15rem;

    color: var(--secondary-color);

    transition: .35s ease;
}

.autoridade-card:hover .icon i{
    transform: scale(1.12);

    filter: drop-shadow(0 0 12px rgba(255,72,0,.45));
}

.card-text{
    position: relative;
    z-index: 2;
}

.card-text h3{
    font-size: 1.25rem;
    font-weight: 800;

    margin-bottom: 10px;

    color: #fff;
}

.card-text p{
    font-size: .98rem;
    line-height: 1.8;

    color: #a1aec0;
}

.depoimentos{
    position: relative;
    padding: 100px 0;
    background: #080808;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.depoimentos::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255,72,0,.08), transparent 28%),
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: auto, 72px 72px, 72px 72px;
    pointer-events: none;
}

.depoimentos::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #080808 0%, transparent 18%, transparent 82%, #080808 100%);
    z-index: 4;
    pointer-events: none;
}

.depoimentos-header{
    position: relative;
    z-index: 6;
    text-align: center;
    margin-bottom: 52px;
}

.depoimentos-header h2{
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
}

.depoimentos-header h2 span{
    color: var(--secondary-color);
}

.depoimentos-loop{
    position: relative;
    z-index: 3;
    overflow: hidden;
    width: 100%;
}

.depoimentos-track{
    display: flex;
    align-items: stretch;
    gap: 32px;
    width: max-content;
    animation: depoimentosLoop 38s linear infinite;
    will-change: transform;
}

.depoimentos-loop:hover .depoimentos-track{
    animation-play-state: paused;
}

.depoimento-card{
    position: relative;
    width: 760px;
    min-height: 230px;
    padding: 46px 54px;
    border: 1px solid rgba(255,255,255,.10);
    background:
        linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
    text-align: center;
    overflow: hidden;
    transition: .45s ease;
}

.depoimento-card::before{
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(120deg, transparent, rgba(255,72,0,.65), transparent);
    opacity: 0;
    transition: .45s ease;
    z-index: 0;
}

.depoimento-card::after{
    content: "";
    position: absolute;
    inset: 1px;
    background: #070707;
    z-index: 1;
}

.depoimento-card:hover{
    transform: translateY(-10px) scale(1.015);
    box-shadow:
        0 30px 80px rgba(0,0,0,.55),
        0 0 45px rgba(255,72,0,.14);
}

.depoimento-card:hover::before{
    opacity: 1;
    animation: bordaGlow 1.8s linear infinite;
}

.depoimento-card .quote,
.depoimento-card p,
.depoimento-card h3,
.depoimento-card small{
    position: relative;
    z-index: 2;
}

.depoimento-card .quote{
    position: absolute;
    left: 34px;
    top: 18px;
    font-size: 5.5rem;
    line-height: 1;
    color: rgba(255,255,255,.08);
    font-family: Georgia, serif;
}

.depoimento-card p{
    max-width: 660px;
    margin: 0 auto 28px;
    font-size: 1.35rem;
    line-height: 1.55;
    font-style: italic;
    color: #f2f2f2;
}

.depoimento-card h3{
    font-size: .95rem;
    letter-spacing: 4px;
    color: #fff;
    margin-bottom: 8px;
}

.depoimento-card small{
    display: block;
    font-size: .78rem;
    letter-spacing: 2px;
    color: #8fa0b5;
}

@keyframes depoimentosLoop{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}

@keyframes bordaGlow{
    from{
        transform: translateX(-30%);
    }
    to{
        transform: translateX(30%);
    }
}

.estrategia{
    position: relative;
    background: #060606;
    overflow: hidden;
}

.estrategia::before{
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top center, rgba(255,72,0,.08), transparent 35%),
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);

    background-size: auto, 72px 72px, 72px 72px;

    pointer-events: none;
}

.ancine-bar{
    position: relative;
    padding: 34px 0;

    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,72,0,.22);

    background:
        linear-gradient(
            90deg,
            rgba(255,72,0,.06),
            transparent 30%,
            transparent 70%,
            rgba(255,72,0,.06)
        );
}

.ancine-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ancine-left{
    display: flex;
    align-items: center;
    gap: 20px;
}

.ancine-icon{
    width: 62px;
    height: 62px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.1);

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.02);
}

.ancine-icon i{
    color: #fff;
    font-size: 1.1rem;
}

.ancine-text span{
    display: block;

    margin-bottom: 8px;

    font-size: 11px;
    letter-spacing: 5px;

    color: var(--secondary-color);
}

.ancine-text h3{
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
}

.ancine-text h3 span{
    color: #7c7c7c;
}

.ancine-divider{
    width: 1px;
    height: 70px;

    background: rgba(255,255,255,.12);
}

.ancine-content img{
    width: 170px;
    opacity: .9;

    filter: drop-shadow(0 0 25px rgba(255,255,255,.12));
}

.estrategia .container{
    position: relative;
    z-index: 2;
}

.estrategia-header{
    text-align: center;
    padding: 110px 0 70px;
}

.estrategia-header h2{
    max-width: 980px;

    margin: 0 auto 26px;

    font-size: 3.2rem;
    line-height: .98;
    letter-spacing: -2px;
    font-weight: 900;

    color: #fff;
}

.estrategia-header h2 span{
    display: block;
    color: #d7d7d7;
}

.estrategia-header p{
    max-width: 720px;

    margin: 0 auto;

    font-size: 1.05rem;
    line-height: 1.9;

    color: #9daabe;
}

.estrategia-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 28px;

    padding-bottom: 110px;
}

.estrategia-card{
    position: relative;

    min-height: 320px;

    padding: 34px;

    border: 1px solid rgba(255,255,255,.08);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.03),
            rgba(255,255,255,.01)
        );

    overflow: hidden;

    transition: .45s ease;
}

.estrategia-card::before{
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(255,72,0,.14),
            transparent 40%
        );

    opacity: 0;

    transition: .45s ease;
}

.estrategia-card:hover{
    transform: translateY(-12px);

    border-color: rgba(255,72,0,.35);

    box-shadow:
        0 25px 60px rgba(0,0,0,.5),
        0 0 35px rgba(255,72,0,.08);
}

.estrategia-card:hover::before{
    opacity: 1;
}

.card-number{
    font-size: .8rem;
    letter-spacing: 4px;

    color: rgba(255,255,255,.18);

    margin-bottom: 34px;
}

.estrategia-card h3{
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 800;

    margin-bottom: 22px;

    color: #fff;
}

.estrategia-card p{
    font-size: 1rem;
    line-height: 1.9;

    color: #a5b2c3;
}

.card-line{
    position: absolute;
    left: 34px;
    bottom: 34px;

    width: 34px;
    height: 1px;

    background: rgba(255,255,255,.22);

    transition: .45s ease;
}

.estrategia-card:hover .card-line{
    width: 80px;
    background: var(--secondary-color);

    box-shadow: 0 0 12px rgba(255,72,0,.45);
}

.abrangencia{
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(circle at left center, rgba(255,72,0,.10), transparent 34%),
        #050505;
    overflow: hidden;
}

.abrangencia::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}

.abrangencia-grid{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.abrangencia-tag{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    margin-bottom: 36px;
    border: 1px solid rgba(255,72,0,.35);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 5px;
    color: var(--secondary-color);
    background: rgba(255,72,0,.04);
}

.abrangencia-tag i{
    font-size: .8rem;
}

.abrangencia-content h2{
    font-size: 3em;
    line-height: .95;
    font-weight: 900;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 34px;
}

.abrangencia-content h2 span{
    color: var(--secondary-color);
    text-shadow: 0 0 40px rgba(255,72,0,.25);
}

.abrangencia-content p{
    max-width: 540px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #aebbd0;
    margin-bottom: 44px;
}

.abrangencia-stats{
    display: flex;
    gap: 18px;
}

.stat-card{
    position: relative;
    width: 185px;
    padding: 28px 22px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.015);
    overflow: hidden;
    transition: .35s ease;
}

.stat-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,72,0,.14), transparent 42%);
    opacity: 0;
    transition: .35s ease;
}

.stat-card:hover{
    transform: translateY(-8px);
    border-color: rgba(255,72,0,.38);
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
}

.stat-card:hover::before{
    opacity: 1;
}

.stat-card i,
.stat-card strong,
.stat-card small{
    position: relative;
    z-index: 2;
}

.stat-card i{
    display: block;
    margin-bottom: 22px;
    font-size: 1.25rem;
    color: #8796ad;
}

.stat-card strong{
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
}

.stat-card small{
    font-size: 10px;
    letter-spacing: 3px;
    color: #8796ad;
}

.abrangencia-map{
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abrangencia-map img{
    width: min(620px, 100%);
    opacity: .58;
    filter:
        grayscale(1)
        brightness(.75)
        drop-shadow(0 0 35px rgba(255,72,0,.12));
    animation: mapFloat 5s ease-in-out infinite;
}

.tracking{
    position: absolute;
    top: 0;
    right: 30px;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--secondary-color);
}

.tracking span{
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 0 14px rgba(255,72,0,.9);
    animation: blink 1s infinite;
}

.tracking small{
    display: block;
    margin-top: 12px;
    font-size: 9px;
    letter-spacing: 2px;
    color: #606b7a;
}

.pulse-dot{
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 rgba(255,72,0,.8);
    animation: pulseMap 2s infinite;
}

.dot-1{
    right: 38%;
    top: 48%;
}

.dot-2{
    right: 28%;
    bottom: 28%;
    animation-delay: .5s;
}

.dot-3{
    right: 47%;
    top: 34%;
    animation-delay: 1s;
}

@keyframes mapFloat{
    0%, 100%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-12px);
    }
}

@keyframes blink{
    0%, 100%{
        opacity: 1;
    }

    50%{
        opacity: .25;
    }
}

@keyframes pulseMap{
    0%{
        box-shadow: 0 0 0 0 rgba(255,72,0,.75);
    }

    70%{
        box-shadow: 0 0 0 22px rgba(255,72,0,0);
    }

    100%{
        box-shadow: 0 0 0 0 rgba(255,72,0,0);
    }
}

.mapa-svg-wrap path{
    fill: #1f1f1f;
    stroke: rgba(255,102,0,.18);
    stroke-width: 4;
    
    transition: fill .4s ease, opacity .4s ease, filter .4s ease;
}

.mapa-svg-wrap path.active{
    fill: #1f1f1f;
    stroke: #ff6600;
    opacity: 1;
    filter:
        drop-shadow(0 0 8px rgba(255,102,0,.9))
        drop-shadow(0 0 18px rgba(255,102,0,.55));
    animation: drawState 1.6s ease forwards;
}

@keyframes drawState{
    from{
        stroke-dashoffset: var(--dash);
    }

    to{
        stroke-dashoffset: 0;
    }
}

.abrangencia-map{
    min-height: 450px;
}

.mapa-svg-wrap{
    width: min(450px, 100%);
    transform: scale(1.25);
    transform-origin: center;
}

.mapa-svg-wrap svg{
    width: 100%;
    height: auto;
    display: block;
}

.abrangencia-map{
    perspective: 1200px;
}

.mapa-svg-wrap{
    transform-style: preserve-3d;
    animation: map3dFloat 7s ease-in-out infinite;
}

@keyframes map3dFloat{
    0%,100%{
        transform: scale(1.25) rotateX(0deg) rotateY(0deg);
    }

    50%{
        transform: scale(1.25) rotateX(4deg) rotateY(-5deg);
    }
}

.abrangencia-map{
    perspective: 1200px;
}

.mapa-svg-wrap{
    transform-style: preserve-3d;
    animation: map3dFloat 7s ease-in-out infinite;
}

@keyframes map3dFloat{
    0%,100%{
        transform: scale(1.25) rotateX(0deg) rotateY(0deg);
    }

    50%{
        transform: scale(1.25) rotateX(4deg) rotateY(-5deg);
    }
}

.abrangencia-map{
    perspective: 1400px;
}

.mapa-svg-wrap{
    transform-style: preserve-3d;
    animation: map3dFloat 8s ease-in-out infinite;
}

@keyframes map3dFloat{
    0%,100%{
        transform: scale(1.25) rotateX(0deg) rotateY(0deg);
    }

    50%{
        transform: scale(1.25) rotateX(2deg) rotateY(-3deg);
    }
}

/*paginaorcamento*/

.form-status{
    max-width: 900px;
    margin: 0 auto 34px;
    padding: 24px 28px;
    border-radius: 18px;
    display: none;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
}

.form-status strong{
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.05rem;
}

.form-status p{
    color: rgba(255,255,255,.68);
    line-height: 1.6;
}

.form-status-sucesso{
    border-color: rgba(255,72,0,.45);
    box-shadow: 0 0 35px rgba(255,72,0,.12);
}

body:has(.orcamento-section) .form-status{
    display: none;
}

.orcamento-section{
    padding:120px 0;
    background:#080808;
}

.orcamento-header{
    max-width:800px;
    margin:0 auto 60px;
    text-align:center;
}

.orcamento-header h1{
    font-size:4rem;
    font-weight:900;
    letter-spacing:-3px;
    margin-bottom:20px;
}

.orcamento-header p{
    color:#a5a5a5;
    line-height:1.8;
}

.orcamento-form{
    max-width:900px;
    margin:0 auto;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.form-group{
    margin-bottom:24px;
}

.form-group label{
    display:block;
    margin-bottom:12px;
    font-weight:700;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:18px;
    border:1px solid rgba(255,255,255,.1);
    background:#111;
    color:#fff;
    font-size:1rem;
}

.form-group textarea{
    resize:vertical;
}
.orcamento-form .footer-button{
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-family: inherit;
}

@media(max-width:768px){

    .form-grid{
        grid-template-columns:1fr;
    }

    .orcamento-header h1{
        font-size:2.5rem;
    }
}

.cookie-consent {
    position: fixed;
    left: 32px;
    bottom: 24px;
    transform: none;
    width: min(92%, 540px);
    background: #ffffff;
    color: #111;
    padding: 24px 28px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
    z-index: 99999;
    font-family: inherit;
    display: none;
}

.cookie-consent.active {
    display: block;
}

.cookie-consent h3 {
    text-align: center;
    font-size: 16px;
    margin-bottom: 14px;
}

.cookie-consent p {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 22px;
}

.cookie-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: 0;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #111;
}

.cookie-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.cookie-actions button {
    border: 1px solid #eee;
    background: #f8f8f8;
    padding: 14px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-actions button:first-child {
    background: #000;
    color: #fff;
    border-color: #000;
}

.cookie-floating {
    position: fixed;
    left: 24px;
    bottom: 18px;
    z-index: 99998;
    background: #111;
    color: #fff;
    border: 0;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.cookie-floating.active {
    display: block;
}

.cookie-option {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.cookie-option strong {
    display: block;
    margin-bottom: 4px;
}

.cookie-option input {
    margin-top: 4px;
}

.political-popup-overlay{
    position:fixed;
    inset:0;
    width:100vw;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);
    z-index:9999999;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.35s ease;
}

.political-popup-overlay.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.political-popup{
    width:min(92vw,900px);
    background:#050505;
    border-radius:22px;
    overflow:hidden;
    position:relative;
    box-shadow:0 30px 120px rgba(0,0,0,.75);
}

.political-banner img{
    width:100%;
    height:auto;
    display:block;
}

.political-footer{
    padding:22px;
    display:flex;
    justify-content:center;
    background:#050505;
}

.political-button{
    background:#ff4800;
    color:#fff;
    text-decoration:none;
    padding:15px 36px;
    border-radius:999px;
    font-weight:800;
}

.political-close{
    position:absolute;
    top:14px;
    right:14px;
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    background:rgba(0,0,0,.75);
    color:#fff;
    font-size:28px;
    cursor:pointer;
    z-index:20;
}

.whatsapp-premium{
    position:fixed;
    right:30px;
    bottom:30px;

    display:flex;
    align-items:center;
    gap:12px;

    background:#ff5a00;
    color:#fff;

    padding:14px 22px;
    border-radius:999px;

    text-decoration:none;

    z-index:9999;

    box-shadow:
    0 0 30px rgba(255,90,0,.5);

    animation:whatsappFloat 3s ease-in-out infinite;
}

.whatsapp-premium i{
    font-size:26px;
}

.whatsapp-premium span{
    font-weight:700;
    white-space:nowrap;
}

@keyframes whatsappFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

/* RESPONSIVO */

@media(max-width: 900px){
    .menu-desktop,
    .social-media{
        display: none;
    }

    .hamburger{
        display: block;
    }

    .navbar{
        height: 82px;
    }

    .logo{
        width: 128px;
    }

    .chamada1{
        text-align: left;
        padding-top: 60px;
    }

    .chamada1 h1{
        letter-spacing: -2px;
    }

    .hero-button{
        width: 100%;
        text-align: center;
    }

     .footer{
        padding-top: 70px;
    }

    .footer-container{
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-bottom-content{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width: 768px){
    .parceiros{
        padding: 80px 0 70px;
    }

    .parceiros-header{
        margin-bottom: 60px;
    }

    .parceiros-header h2{
        font-size: 2.4rem;
    }

    .logos-track{
        gap: 60px;
    }

    .logos-track img{
        height: 42px;
        max-width: 135px;
    }

    .parceiros-cta a{
        padding: 18px 26px;
        font-size: 10px;
        letter-spacing: 3px;
        text-align: center;
    }
}

@media(max-width: 900px){
    .riscos-grid{
        grid-template-columns: 1fr;
    }

    .risco-card{
        min-height: auto;
    }
}

@media(max-width: 600px){
    .riscos{
        padding: 70px 0;
    }

    .risco-card{
        padding: 30px 24px;
    }

    .riscos-frase{
        text-align: left;
    }
}

@media(max-width: 980px){

    .autoridade-grid{
        grid-template-columns: 1fr;
    }

    .autoridade-content{
        max-width: 100%;
    }

    .autoridade-cards{
        width: 100%;
    }
}

@media(max-width: 768px){

    .autoridade{
        padding: 80px 0;
    }

    .autoridade-grid{
        gap: 50px;
    }

    .autoridade-content h2{
        font-size: 2.7rem;
    }

    .autoridade-card{
        padding: 28px 24px;
    }

    .card-text h3{
        font-size: 1.15rem;
    }
}

@media(max-width: 768px){
    .depoimentos{
        padding: 80px 0;
    }

    .depoimentos-header{
        margin-bottom: 38px;
    }

    .depoimentos-header h2{
        font-size: 1.55rem;
        line-height: 1.35;
    }

    .depoimentos-track{
        gap: 20px;
        animation-duration: 30s;
    }

    .depoimento-card{
        width: 82vw;
        min-height: 250px;
        padding: 38px 26px;
    }

    .depoimento-card:hover{
        transform: none;
        box-shadow: none;
    }

    .depoimento-card::before{
        display: none;
    }

    .depoimento-card p{
        font-size: 1rem;
        line-height: 1.7;
    }

    .depoimento-card h3{
        font-size: .8rem;
        letter-spacing: 3px;
    }

    .depoimento-card small{
        font-size: .7rem;
    }

    .depoimento-card .quote{
        font-size: 4rem;
        left: 22px;
        top: 16px;
    }
}

@media(max-width: 1100px){

    .estrategia-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px){

    .ancine-content{
        flex-direction: column;
        text-align: center;
    }

    .ancine-divider{
        display: none;
    }

    .ancine-left{
        flex-direction: column;
    }

    .ancine-text h3{
        font-size: 1.6rem;
    }

    .estrategia-header{
        padding: 80px 0 50px;
    }

    .estrategia-header h2{
        font-size: 2.2rem;
    }

    .estrategia-grid{
        grid-template-columns: 1fr;
        padding-bottom: 80px;
    }

    .estrategia-card{
        min-height: auto;
    }
}

@media(max-width: 980px){
    .abrangencia-grid{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .abrangencia-map{
        min-height: 380px;
    }
}

@media(max-width: 768px){
    .abrangencia{
        padding: 80px 0;
    }

    .abrangencia-content h2{
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .abrangencia-content p{
        font-size: 1rem;
    }

    .abrangencia-stats{
        flex-direction: column;
    }

    .stat-card{
        width: 100%;
    }

    .tracking{
        right: 0;
    }
}


@media (max-width: 640px) {
       .cookie-consent {
        left: 50%;
        bottom: 14px;
        transform: translateX(-50%);
        padding: 22px 20px;
    }


    .cookie-actions {
        grid-template-columns: 1fr;
    }
}

