.elementor-1301 .elementor-element.elementor-element-ef1ad07{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1301 .elementor-element.elementor-element-ef1ad07.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-1301 .elementor-element.elementor-element-bdaed09{width:100%;max-width:100%;}@media(min-width:768px){.elementor-1301 .elementor-element.elementor-element-ef1ad07{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-bdaed09 *//*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#0A0A0A;
    color:#F5F5F0;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
    width:100%;
}

a{
    text-decoration:none;
    color:#F5F5F0;
}

ul{
    list-style:none;
}

button{
    cursor:pointer;
    border:none;
    background:none;
    font-family:inherit;
}

/*==================================================
ROOT
==================================================*/

:root{
    --primary:#2DD85C;
    --background:#0A0A0A;
    --card:#111111;
    --border:rgba(255,255,255,.08);
    --text:#F5F5F0;
    --muted:#9B9B9B;
    --container:1180px;
    --radius:18px;
    --transition:.35s;
    --gutter:24px;
    --header-h:64px;
}

@media(max-width:768px){
    :root{
        --gutter:20px;
        --header-h:60px;
    }
}

/*==================================================
CONTAINER
==================================================*/

.container{
    max-width:var(--container);
    width:100%;
    padding:0 var(--gutter);
    margin:0 auto;
}

/*==================================================
SECTION
==================================================*/

section{
    position:relative;
}

.section-label{
    display:inline-block;
    font-size:12px;
    letter-spacing:8px;
    text-transform:uppercase;
    color:#8F8F8F;
    margin-bottom:24px;
}



/*==================================================
BOTÕES
==================================================*/

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    padding:18px 34px;
    background:var(--primary);
    color:#FFF;
    font-weight:700;
    border-radius:4px;
    transition:.35s;
    white-space:nowrap;
}

.btn-primary:hover{
    transform:translateY(-3px);
    background:#39eb69;
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 34px;
    border:1px solid rgba(255,255,255,.15);
    color:#FFF;
    border-radius:4px;
    transition:.35s;
    white-space:nowrap;
}

.btn-secondary:hover{
    background:#FFF;
    color:#111;
}

.btn-dark{
    display:flex;
    justify-content:center;
    align-items:center;
    height:56px;
    background:#111;
    color:#FFF;
    font-weight:700;
    border-radius:4px;
    transition:.3s;
}

.btn-dark:hover{
    background:#000;
}

/*==================================================
HEADER
==================================================*/

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:var(--header-h);
    z-index:9999;
    background:transparent;
    transition:.3s;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:var(--header-h);
    gap:16px;
}

.logo{
    width:150px;
    flex-shrink:0;
}

.desktop-nav{
    display:flex;
    align-items:center;
    gap:36px;
    margin:0 auto;
}

.desktop-nav a{
    font-size:14px;
    font-weight:500;
    color:#D5D5D5;
    white-space:nowrap;
    transition:.25s;
}

.desktop-nav a:hover{
    color:#FFF;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:16px;
    flex-shrink:0;
}

.btn-whatsapp{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    height:44px;
    padding:0 20px;
    min-width:190px;
    background:#2ED95F;
    color:#FFF;
    font-size:13px;
    font-weight:700;
    border-radius:4px;
    transition:.25s;
}

.btn-whatsapp i,
.btn-whatsapp svg{
    width:16px;
    height:16px;
    font-size:15px;
    flex-shrink:0;
}

.btn-whatsapp:hover{
    background:#35e868;
}

.header.scroll{
    background:rgba(8,8,8,.85);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.06);
}

/* Hamburger */

.mobile-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    width:40px;
    height:40px;
    z-index:10001;
    position:relative;
}

.mobile-toggle .bar{
    display:block;
    width:22px;
    height:2px;
    background:#FFF;
    border-radius:2px;
    transition:.3s ease;
}

.mobile-toggle.active .bar:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(2){
    opacity:0;
}

.mobile-toggle.active .bar:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

/* Mobile menu panel */

.mobile-menu{
    position:fixed;
    top:0;
    right:0;
    height:100vh;
    width:min(78vw,340px);
    background:#0D0D0D;
    border-left:1px solid rgba(255,255,255,.08);
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:36px;
    padding:40px var(--gutter);
    transform:translateX(100%);
    transition:transform .4s cubic-bezier(.65,0,.35,1);
    z-index:10000;
}

.mobile-menu.active{
    transform:translateX(0);
}

.mobile-menu nav{
    display:flex;
    flex-direction:column;
    gap:26px;
}

.mobile-menu nav a{
    font-size:22px;
    font-weight:600;
    color:#F0F0F0;
}

.mobile-menu .btn-whatsapp{
    width:100%;
    min-width:0;
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    opacity:0;
    pointer-events:none;
    transition:opacity .35s ease;
    z-index:9998;
}

.menu-overlay.active{
    opacity:1;
    pointer-events:auto;
}

body.menu-open{
    overflow:hidden;
}

/*==================================================
HERO
==================================================*/

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#000;
}

.hero-bg{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:55% 46%;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.58);
}

.hero-overlay-2{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(10,10,10,.95) 0%,
        rgba(10,10,10,.55) 45%,
        rgba(10,10,10,.08) 100%
    );
}

.hero-container{
    position:relative;
    z-index:5;
    padding-top:var(--header-h);
    width:100%;
}

.hero-content{
    max-width:760px;
}

.hero-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:28px;
}

.hero-line{
    width:42px;
    height:1px;
    background:#8A8A8A;
    flex-shrink:0;
}

.hero-top span{
    letter-spacing:6px;
    text-transform:uppercase;
    font-size:12px;
    color:#999;
}

.hero h1{
    font-size:clamp(34px,5.5vw,68px);
    line-height:1.02;
    letter-spacing:-2px;
    font-weight:800;
    margin-bottom:28px;
    word-break:break-word;
    color:#F5F5F0;
}

.hero p{
    max-width:620px;
    font-size:clamp(16px,2vw,24px);
    line-height:1.7;
    color:#A6A6A6;
    margin-bottom:38px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:10px;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:28px 36px;
    padding-top:32px;
    margin-top:32px;
    border-top:1px solid rgba(255,255,255,.08);
}

.hero-features .feature{
    display:flex;
    align-items:center;
    gap:12px;
    color:#AAA;
    font-size:14px;
}

.hero-features span{
    width:6px;
    height:6px;
    border-radius:50%;
    background:#FFFFFF;
    flex-shrink:0;
}

/*==================================================
SOBRE
==================================================*/

.about{
    background:#F5F5F0;
    color:#0A0A0A;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:stretch;
}

.about-image{
    position:relative;
    overflow:hidden;
    min-height:560px;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .8s ease;
}

.about-image:hover img{
    transform:scale(1.05);
}

.about-content-wrap{
    display:flex;
    align-items:center;
    padding:70px 0;
}

.about-content-wrap .container{
    padding-left:var(--gutter);
    padding-right:var(--gutter);
    margin:0;
    max-width:640px;
}

.about-content h2{
    font-size:clamp(28px,3.2vw,34px);
    line-height:1.15;
    letter-spacing:-1.5px;
    color:#F5F5F0;
    margin-bottom:26px;
}

.about-description{
    font-size:16px;
    line-height:1.9;
    color:#6f6f6f;
    margin-bottom:36px;
}

.about-list{
    display:flex;
    flex-direction:column;
    gap:0;
    margin-bottom:36px;
}

.about-item{
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding:18px 0;
    border-bottom:1px solid #E8E8E8;
}

.about-item:first-child{
    padding-top:0;
}

.about-line{
    width:3px;
    min-height:44px;
    background:#111;
    flex-shrink:0;
}

.about-item h4{
    font-size:16px;
    font-weight:700;
    margin-bottom:8px;
}

.about-item p{
    color:#888;
    line-height:1.8;
    font-size:15px;
}

.about-button{
    padding-inline:42px;
}

/*==================================================
SERVIÇOS
==================================================*/

.services{
    background:#080808;
    padding:90px 0;
}

.services .section-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    flex-wrap:wrap;
    gap:24px;
    margin-bottom:60px;
}

.services .section-header h2{
    font-size:clamp(28px,3.6vw,42px);
    line-height:1.1;
    letter-spacing:-1.5px;
    max-width:560px;
    color:#F5F5F0;
}

.section-link{
    color:#8f8f8f;
    font-size:16px;
    transition:.35s;
    white-space:nowrap;
}

.section-link:hover{
    color:#FFF;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.service-card{
    position:relative;
    overflow:hidden;
    background:#101010;
    border:1px solid rgba(255,255,255,.05);
    border-radius:8px;
    transition:.25s;
}

.service-card:hover{
    border-color:rgba(255,255,255,.12);
}

.service-image{
    position:relative;
    height:220px;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.service-card:hover img{
    transform:scale(1.08);
}

.service-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(transparent,rgba(0,0,0,.55));
}

.service-body{
    padding:26px;
}

.service-icon{
    width:42px;
    height:42px;
    margin-bottom:6px;
    font-size:18px;
    color:#F5F5F0;
}

.service-body h3{
    color:#F5F5F0;
    font-size:18px;
    font-weight:700;
    margin-bottom:12px;
}

.service-body p{
    color:#909090;
    line-height:1.8;
    font-size:15px;
    margin-bottom:26px;
}

.service-body a{
    color:#B7B7B7;
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:12px;
    transition:.35s;
}

.service-body a:hover{
    color:#FFF;
}

.services-grid article:last-child{
    grid-column:2;
}

/*==================================================
PERFORMANCE
==================================================*/

.performance{
    background:#F5F5F0;
    color:#111;
    padding:100px 0;
}

.performance-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    flex-wrap:wrap;
    gap:32px;
    margin-bottom:70px;
}

.performance-header h2{
    font-size:clamp(30px,4.2vw,54px);
    line-height:1.05;
    font-weight:800;
    letter-spacing:-2px;
    color:#000000;
}

.performance-header p{
    max-width:400px;
    color:#000000;
    font-size:clamp(16px,1.8vw,20px);
    line-height:1.8;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid #E5E5E5;
    border-bottom:1px solid #E5E5E5;
}

.stat-card{
    padding:56px 28px;
    border-right:1px solid #E5E5E5;
    transition:.35s;
}

.stat-card:last-child{
    border-right:none;
}

.stat-card:hover{
    background:#FFF;
}

.stat-number{
    font-size:clamp(36px,4.2vw,54px);
    font-weight:800;
    line-height:1;
    margin-bottom:16px;
    letter-spacing:-2px;
}

.stat-number span{
    font-size:26px;
    color:#888;
    margin-left:8px;
    font-weight:500;
}

.stat-card p{
    color:#888;
    font-size:17px;
}

/*==================================================
ESTRUTURA
==================================================*/

.estrutura{
    background:#090909;
    padding:100px 0;
}

.estrutura-grid{
    display:grid;
    grid-template-columns:minmax(0,440px) 1fr;
    gap:70px;
    align-items:center;
}

.estrutura-video{
    position:relative;
}

.video-wrapper{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    border-radius:8px;
    aspect-ratio:9 / 16;
    max-height:720px;
}

.estrutura-video-player{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:.6s;
}

.video-wrapper:hover .estrutura-video-player{
    transform:scale(1.02);
}

.video-gradient{
    position:absolute;
    inset:0;
    background:linear-gradient(transparent 45%,rgba(0,0,0,.82));
}

.play-button{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:64px;
    height:64px;
    border:1px solid rgba(255,255,255,.35);
    border-radius:50%;
    color:#FFF;
    font-size:18px;
    transition:.2s;
    display:flex;
    align-items:center;
    justify-content:center;
}

.play-button:hover{
    background:rgba(255,255,255,.08);
    border-color:#FFF;
}

.video-info{
    position:absolute;
    left:24px;
    bottom:24px;
}

.video-info span{
    display:block;
    font-size:11px;
    letter-spacing:5px;
    text-transform:uppercase;
    color:#9A9A9A;
    margin-bottom:10px;
}

.video-info strong{
    font-size:20px;
}

.estrutura-content h2{
    font-size:clamp(28px,3.6vw,40px);
    line-height:1.1;
    margin-bottom:22px;
    font-weight:800;
    letter-spacing:-1.5px;
    color:#F5F5F0;
}

.estrutura-content p{
    color:#8E8E8E;
    font-size:16px;
    line-height:1.8;
    margin-bottom:38px;
    max-width:520px;
}

.estrutura-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin-bottom:48px;
}

.estrutura-stats div{
    padding-bottom:22px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.estrutura-stats strong{
    display:block;
    font-size:clamp(28px,3.5vw,42px);
    font-weight:800;
    margin-bottom:8px;
    color:#F5F5F0;
}

.estrutura-stats span{
    color:#8C8C8C;
    font-size:16px;
}

.estrutura-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.estrutura-list div{
    display:flex;
    align-items:center;
    gap:12px;
    color:#A6A6A6;
    font-size:16px;
}

.estrutura-list span{
    width:3px;
    height:16px;
    background:#FFFFFF;
    flex-shrink:0;
}

.video-wrapper::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.18);
    transition:.35s;
}

.video-wrapper:hover::after{
    background:rgba(0,0,0,.05);
}


.video-gradient,
.video-info,
.video-wrapper::after{
    pointer-events:none;
}

.play-button{
    z-index:10;
    cursor:pointer;
}

.estrutura-video-player{
    z-index:1;
}

.video-gradient{
    z-index:2;
}

.video-info{
    z-index:3;
}

.play-button{
    z-index:4;
}
/*==================================================
DIFERENCIAIS
==================================================*/

.diferenciais{
    background:#070707;
    padding:100px 0;
}

.diferenciais-header{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:50px;
}

.diferenciais-header h2{
    font-size:clamp(28px,3.6vw,40px);
    font-weight:800;
    line-height:1.1;
    letter-spacing:-1.5px;
    max-width:520px;
    color:#F5F5F0;
}

.diferenciais-list{
    border-top:1px solid rgba(255,255,255,.08);
}

.diferencial{
    display:grid;
    grid-template-columns:70px 260px 1fr;
    gap:32px;
    align-items:center;
    padding:32px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    transition:.25s;
}

.diferencial:hover{
    padding-left:8px;
}

.numero{
    font-size:32px;
    font-weight:900;
    color:rgba(255,255,255,.09);
    line-height:1;
}

.conteudo h3{
    font-size:18px;
    line-height:1.4;
    font-weight:700;
    color: #F0F0F0;
}

.diferencial p{
    font-size:15px;
    line-height:1.8;
    color:#8C8C8C;
    max-width:420px;
}

/*==================================================
GALERIA
==================================================*/

.gallery{
    background:#F5F5F0;
    color:#0A0A0A;
    padding:100px 0;
}

.gallery-header{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:44px;
}

.gallery-header h2{
    font-size:clamp(28px,3.6vw,40px);
    font-weight:800;
    line-height:1.1;
    letter-spacing:-1.5px;
    max-width:620px;
    color:#000;
}

.gallery-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    grid-template-rows:300px 300px;
    gap:14px;
    margin-bottom:14px;
}

.gallery-large{
    grid-row:1 / span 2;
    overflow:hidden;
    position:relative;
    border-radius:6px;
}

.gallery-small{
    overflow:hidden;
    position:relative;
    border-radius:6px;
}

.gallery-large img,
.gallery-small img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}

.gallery-large:hover img,
.gallery-small:hover img{
    transform:scale(1.08);
}

.gallery-bottom{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

.gallery-bottom div{
    height:220px;
    overflow:hidden;
    position:relative;
    border-radius:6px;
}

.gallery-bottom img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}

.gallery-bottom div:hover img{
    transform:scale(1.08);
}

.gallery-large::before,
.gallery-small::before,
.gallery-bottom div::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.45),transparent 55%);
    opacity:0;
    transition:.35s;
    z-index:2;
}

.gallery-large:hover::before,
.gallery-small:hover::before,
.gallery-bottom div:hover::before{
    opacity:1;
}

.gallery-large::after,
.gallery-small::after,
.gallery-bottom div::after{
    content:"";
    position:absolute;
    inset:16px;
    border:1px solid rgba(255,255,255,.18);
    opacity:0;
    transition:.35s;
    z-index:3;
}

.gallery-large:hover::after,
.gallery-small:hover::after,
.gallery-bottom div:hover::after{
    opacity:1;
}

/*==================================================
ANIMAÇÕES GERAIS
==================================================*/

.service-card,
.stat-card,
.gallery-large,
.gallery-small,
.gallery-bottom div,
.diferencial{
    transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;
}

.gallery-large:hover,
.gallery-small:hover,
.gallery-bottom div:hover{
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

/*==================================================
CONTATO
==================================================*/

.contact{
    background:#F5F5F0;
    color:#111;
    padding:100px 0;
}

.contact-header{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    margin-bottom:40px;
}

.contact-header h2{
    font-size:clamp(28px,3.6vw,40px);
    font-weight:800;
    line-height:1.1;
    letter-spacing:-1.5px;
    color:#111;
    max-width:520px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:32px;
    align-items:start;
}

.contact-map{
    height:520px;
    overflow:hidden;
    border-radius:8px;
}

.contact-map iframe{
    width:100%;
    height:100%;
    border:0;
    filter:grayscale(100%);
}

.contact-info{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.info-block{
    margin-bottom:38px;
}

.info-block:last-of-type{
    margin-bottom:32px;
}

.info-block small{
    display:block;
    font-size:11px;
    letter-spacing:5px;
    color:#999;
    margin-bottom:16px;
}

.info-block h4{
    font-size:24px;
    line-height:1.4;
    margin-bottom:12px;
    font-weight:700;
}

.info-block p,
.info-block a{
    display:block;
    color:#666;
    line-height:1.8;
    font-size:16px;
    margin-bottom:8px;
    transition:.3s;
}

.info-block a:hover{
    color:#111;
}

/*==================================================
CTA
==================================================*/

.cta{
    position:relative;
    padding:clamp(100px,18vw,200px) 0;
    text-align:center;
    background-image:url("https://images.unsplash.com/photo-1583692717320-0c9661d49d9a?w=1920&h=600&fit=crop&auto=format");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.70);
}

.cta .container{
    position:relative;
    z-index:5;
}

.cta h2{
    font-size:clamp(32px,5.5vw,60px);
    line-height:1.05;
    font-weight:800;
    letter-spacing:-2px;
    margin-bottom:26px;
    color:#F5F5F0;
}

.cta p{
    max-width:620px;
    margin:0 auto 44px;
    color:#999;
    font-size:clamp(16px,2vw,22px);
    line-height:1.8;
}

.light{
    color:#999;
}

/*==================================================
FOOTER
==================================================*/

.footer{
    background:#050505;
    padding:80px 0 32px;
    border-top:1px solid rgba(255,255,255,.05);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    margin-bottom:56px;
}

.footer-logo{
    width:190px;
    margin-bottom:24px;
}

.footer-brand p{
    color:#7E7E7E;
    line-height:1.8;
    max-width:280px;
}

.footer h4{
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:24px;
    color:#DDD;
}

.footer a,
.footer p{
    display:block;
    color:#888;
    margin-bottom:14px;
    transition:.3s;
    font-size:15px;
}

.footer a:hover{
    color:#FFF;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    border-top:1px solid rgba(255,255,255,.05);
    padding-top:28px;
    color:#666;
    font-size:13px;
}

/*==================================================
WHATSAPP FLUTUANTE
==================================================*/

.whatsapp-float{
    position:fixed;
    right:26px;
    bottom:26px;
    width:64px;
    height:64px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#25D366;
    color:#FFF;
    font-size:28px;
    z-index:9997;
    box-shadow:0 10px 35px rgba(37,211,102,.35);
    transition:.35s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/*==================================================
RESPONSIVO
==================================================*/

/* --- Telas grandes / laptops --- */
@media(max-width:1200px){

    .about-image{
        min-height:460px;
    }

    .estrutura-grid{
        grid-template-columns:minmax(0,380px) 1fr;
        gap:48px;
    }

    .video-wrapper{
        max-height:600px;
    }

    .diferencial{
        grid-template-columns:60px 200px 1fr;
        gap:24px;
    }
}

/* --- Tablets --- */
@media(max-width:992px){

    .desktop-nav,
    .desktop-only{
        display:none;
    }

    .mobile-toggle{
        display:flex;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-image{
        min-height:380px;
    }

    .about-content-wrap{
        padding:56px 0 70px;
    }

    .performance-header,
    .estrutura-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .performance-header p{
        max-width:none;
    }

    .estrutura-grid{
        gap:44px;
    }

    .video-wrapper{
        max-height:520px;
        margin:0 auto;
        max-width:340px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }

    .gallery-large{
        grid-row:auto;
        height:340px;
    }

    .gallery-small{
        height:240px;
    }

    .gallery-bottom{
        grid-template-columns:1fr 1fr;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .services-grid article:last-child{
        grid-column:auto;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stat-card:nth-child(2){
        border-right:none;
    }

    .stat-card{
        border-bottom:1px solid #E5E5E5;
    }

    .stat-card:nth-last-child(-n+2){
        border-bottom:none;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-bottom{
        flex-direction:column;
        gap:16px;
        text-align:center;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-buttons a{
        text-align:center;
    }

    .diferencial{
        grid-template-columns:1fr;
        gap:14px;
        padding:28px 0;
    }

    .numero{
        font-size:36px;
    }

    .contact-map{
        height:340px;
    }
}

/* --- Celulares grandes --- */
@media(max-width:768px){

    .header .container{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .logo{
        width:128px;
    }

    .hero{
        min-height:calc(100svh - var(--header-h));
    }

    .hero-container{
        padding-top:0;
    }

    .about-content-wrap{
        padding:32px 0 56px;
    }

    .about-image{
        min-height:260px;
        margin:20px var(--gutter) 0;
        width:calc(100% - (var(--gutter) * 2));
        border-radius:12px;
    }

    .video-wrapper{
        max-height:480px;
        max-width:300px;
        margin:0 auto;
    }

    .stat-card{
        padding:36px 20px;
    }

    .services{
        padding:70px 0;
    }

    .performance,
    .estrutura,
    .diferenciais,
    .gallery,
    .contact{
        padding:70px 0;
    }

    .gallery-bottom{
        grid-template-columns:1fr;
    }

    .gallery-bottom div{
        height:220px;
    }

    .contact-map{
        height:280px;
    }

    .info-block h4{
        font-size:21px;
    }

    .cta{
        padding:110px 0;
    }

    .whatsapp-float{
        width:56px;
        height:56px;
        font-size:24px;
        right:16px;
        bottom:16px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:36px;
    }
}

/* --- Celulares pequenos --- */
@media(max-width:480px){

    .hero-buttons a{
        width:100%;
    }

    .hero-features{
        gap:16px 28px;
    }

    .section-label{
        letter-spacing:4px;
        font-size:10px;
    }

    .about-list{
        gap:0;
    }

    .about-item{
        gap:16px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-image{
        height:200px;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .video-wrapper{
        max-height:440px;
        max-width:260px;
        margin:0 auto;
    }

    .estrutura-stats{
        gap:18px;
    }

    .estrutura-stats strong{
        font-size:30px;
    }

    .btn-whatsapp span{
        display:inline;
    }

    .mobile-menu{
        width:100vw;
    }

    .hero-container{
        margin-top: 30vh;
    }

}

/*==================================================
ACESSIBILIDADE
==================================================*/

a:focus-visible,
button:focus-visible{
    outline:2px solid var(--primary);
    outline-offset:3px;
}

@media (prefers-reduced-motion: reduce){
    *{
        animation-duration:.001ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.001ms !important;
        scroll-behavior:auto !important;
    }
}/* End custom CSS */