/* ==========================================================
   RESET GERAL
========================================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

/* ==========================================================
   CONFIGURAÇÕES GERAIS
========================================================== */

html{

    scroll-behavior:smooth;

}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#070707;

    color:#FFFFFF;

    overflow-x:hidden;

}

/* ==========================================================
   CONTAINER
========================================================== */

.container{

    width:min(90%,1400px);

    margin:auto;

}

/* ==========================================================
   LINKS
========================================================== */

a{

    text-decoration:none;

    color:inherit;

}

/* ==========================================================
   IMAGENS
========================================================== */

img{

    width:100%;

    display:block;

}

/* ==========================================================
   BOTÕES
========================================================== */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    background:#7ED957;

    color:#050505;

    border-radius:12px;

    font-weight:700;

    transition:.35s;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(126,217,87,.35);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border:2px solid #7ED957;

    border-radius:12px;

    color:#FFFFFF;

    transition:.35s;

}

.btn-secondary:hover{

    background:#7ED957;

    color:#050505;

}

/* ==========================================================
   TÍTULOS DAS SEÇÕES
========================================================== */

.section-header{

    max-width:750px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.section-tag{

    display:table;

    margin: 0 auto;

    padding:10px 18px;

    background:rgba(126,217,87,.15);

    color:#7ED957;

    border:1px solid rgba(126,217,87,.30);

    border-radius:999px;

    margin-bottom:22px;

    font-size:.9rem;

    font-weight:600;

}

.section-header h2{

    font-size:3rem;

    line-height:1.2;

    margin-bottom:20px;

}

.section-header p{

    color:#BDBDBD;

    font-size:1.05rem;

    line-height:1.8;

}
/* ==========================================================
   HEADER / MENU PRINCIPAL
========================================================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(5,5,5,.82);

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

    backdrop-filter:blur(16px);

    -webkit-backdrop-filter:blur(16px);

}

.header-container{

    min-height:88px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

}

/* ==========================================================
   LOGO
========================================================== */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    flex-shrink:0;

}
.logo-img{
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
}

.logo-icon{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#7ED957;

    color:#050505;

    border-radius:12px;

    font-size:1rem;

    font-weight:900;

    letter-spacing:.5px;

}

.logo-text{

    display:flex;

    flex-direction:column;

    line-height:1.05;

}

.logo-text strong{

    color:#FFFFFF;

    font-size:1.05rem;

    font-weight:800;

}

.logo-text span{

    color:#7ED957;

    font-size:.85rem;

    font-weight:600;

    letter-spacing:.8px;

}

/* ==========================================================
   MENU DESKTOP
========================================================== */

.menu{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:30px;

    margin-left:auto;

}

.menu a{

    position:relative;

    color:#D7D7D7;

    font-size:.95rem;

    font-weight:600;

    transition:.3s;

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#7ED957;

    transition:.3s;

}

.menu a:hover{

    color:#FFFFFF;

}

.menu a:hover::after{

    width:100%;

}

/* ==========================================================
   BOTÃO DO HEADER
========================================================== */

.btn-header{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-height:48px;

    padding:0 24px;

    background:#7ED957;

    color:#050505;

    border-radius:10px;

    font-size:.92rem;

    font-weight:800;

    white-space:nowrap;

    transition:.3s;

}

.btn-header:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 30px rgba(126,217,87,.28);

}

/* ==========================================================
   BOTÃO DO MENU MOBILE
========================================================== */

.menu-mobile{

    display:none;

    width:46px;

    height:46px;

    align-items:center;

    justify-content:center;

    background:transparent;

    color:#FFFFFF;

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

    border-radius:10px;

    font-size:1.45rem;

    cursor:pointer;

}
/* ==========================================================
   HERO
========================================================== */

/* ==========================================================
   HERO — IMAGEM DE FUNDO CORRIGIDA
========================================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background-image:url("imagens/fundo-site-atual.jpeg");

    background-size:cover;

    background-repeat:no-repeat;

    /* Mantém a parte principal da máquina visível */
    background-position:10% center;

    overflow:hidden;

}

/* ==========================================================
   OVERLAY ESCURO
========================================================== */

/* ==========================================================
   CAMADA ESCURA SOBRE A FOTO
========================================================== */

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(5,5,5,.60) 0%,
        rgba(5,5,5,.48) 48%,
        rgba(5,5,5,.58) 100%
    );

}

/* ==========================================================
   CONTAINER HERO
========================================================== */

.hero-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

    padding:170px 0 110px;

}

/* ==========================================================
   TEXTO HERO
========================================================== */

.hero-content{

    max-width:720px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    padding:10px 20px;

    border-radius:999px;

    background:rgba(126,217,87,.15);

    border:1px solid rgba(126,217,87,.35);

    color:#7ED957;

    font-size:.92rem;

    margin-bottom:28px;

}

.hero-content h1{

    font-size:4.2rem;

    line-height:1.1;

    margin-bottom:30px;

    font-weight:800;

}

.hero-content h1 span{

    color:#7ED957;

}

.hero-content p{

    font-size:1.15rem;

    line-height:1.9;

    color:#D8D8D8;

    margin-bottom:40px;

}

/* ==========================================================
   BENEFÍCIOS
========================================================== */

.hero-benefits{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:45px;

}

.hero-benefits div{

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px;

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

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

    border-radius:12px;

    color:#F5F5F5;

}

/* ==========================================================
   BOTÕES HERO
========================================================== */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

/* ==========================================================
   FORMULÁRIO
========================================================== */

.hero-form{

    background:rgba(15,15,15,.78);

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

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-radius:24px;

    padding:38px;

    box-shadow:0 35px 70px rgba(0,0,0,.45);

}

.hero-form h2{

    font-size:2rem;

    margin-bottom:10px;

}

.hero-form>p{

    color:#BFBFBF;

    margin-bottom:30px;

}

.hero-form form{

    display:flex;

    flex-direction:column;

    gap:18px;

}
/* ==========================================================
   CAMPOS DO FORMULÁRIO
========================================================== */

.hero-form input,

.hero-form select,

.hero-form textarea{

    width:100%;

    background:#111111;

    color:#FFFFFF;

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

    border-radius:12px;

    padding:18px 20px;

    font-size:.96rem;

    outline:none;

    transition:.35s;

}

.hero-form input::placeholder,

.hero-form textarea::placeholder{

    color:#8F8F8F;

}

.hero-form textarea{

    min-height:140px;

    resize:vertical;

}

.hero-form input:focus,

.hero-form select:focus,

.hero-form textarea:focus{

    border-color:#7ED957;

    box-shadow:0 0 0 4px rgba(126,217,87,.12);

}

/* ==========================================================
   SELECT
========================================================== */

.hero-form select{

    cursor:pointer;

}

/* ==========================================================
   UPLOAD
========================================================== */

.upload-area{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-height:120px;

    border:2px dashed rgba(126,217,87,.35);

    border-radius:14px;

    background:rgba(126,217,87,.05);

    color:#D8D8D8;

    text-align:center;

    cursor:pointer;

    transition:.35s;

}

.upload-area:hover{

    border-color:#7ED957;

    background:rgba(126,217,87,.10);

}

.upload-area input{

    display:none;

}

/* ==========================================================
   BOTÃO ENVIAR
========================================================== */

.btn-submit{

    width:100%;

    height:58px;

    border:none;

    border-radius:12px;

    background:#7ED957;

    color:#050505;

    font-size:1rem;

    font-weight:800;

    cursor:pointer;

    transition:.35s;

}

.btn-submit:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(126,217,87,.30);

}

/* ==========================================================
   ESPAÇAMENTO PADRÃO DAS SEÇÕES
========================================================== */

.advantages,

.services,

.about,

.process,

.cta{

    padding:120px 0;

}
/* ==========================================================
   DIFERENCIAIS
========================================================== */

.advantages{

    background:#0A0A0A;

}

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* ==========================================================
   CARD DOS DIFERENCIAIS
========================================================== */

.advantage-card{

    background:#111111;

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

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

}

.advantage-card:hover{

    transform:translateY(-10px);

    border-color:#7ED957;

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

}

.advantage-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.advantage-card h3{

    font-size:1.4rem;

    margin:28px 28px 15px;

}

.advantage-card p{

    margin:0 28px 30px;

    color:#BDBDBD;

    line-height:1.8;

}

/* ==========================================================
   SERVIÇOS
========================================================== */

.services{

    background:#070707;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

/* ==========================================================
   CARD DE SERVIÇO
========================================================== */

.service-card{

    background:#111111;

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

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:#7ED957;

}

.service-card img{

    width:100%;

    height:280px;

    object-fit:cover;

}

.service-content{

    padding:30px;

}

.service-content h3{

    font-size:1.5rem;

    margin-bottom:18px;

}

.service-content p{

    color:#BFBFBF;

    line-height:1.8;

}
/* ==========================================================
   SOBRE A EMPRESA
========================================================== */

.about{

    background:#0B0B0B;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/* ==========================================================
   IMAGEM
========================================================== */

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:24px;

    object-fit:cover;

    box-shadow:0 30px 60px rgba(0,0,0,.45);

}

/* ==========================================================
   TEXTO
========================================================== */

.about-content{

    display:flex;

    flex-direction:column;

    align-items: center;

    

}

.about-content h2{

    font-size:3rem;

    line-height:1.2;

    margin:20px 0 25px;

}

.about-content p{

    color:#C7C7C7;

    line-height:1.9;

    margin-bottom:18px;

}

/* ==========================================================
   LISTA DE DIFERENCIAIS
========================================================== */

.about-list{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin:35px 0 45px;

}

.about-item{

    display:flex;

    align-items:flex-start;

    gap:15px;

}

.about-item span{

    width:34px;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border-radius:50%;

    background:#7ED957;

    color:#050505;

    font-weight:800;

}

.about-item p{

    margin:0;

    color:#E5E5E5;

    line-height:1.7;

}

/* ==========================================================
   BOTÃO
========================================================== */

.about-content .btn-primary{

    width:max-content;

}
/* ==========================================================
   COMO FUNCIONA
========================================================== */

.process{

    background:#070707;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

/* ==========================================================
   CARD DO PROCESSO
========================================================== */

.process-card{

    position:relative;

    padding:40px 30px;

    background:#111111;

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

    border-radius:22px;

    transition:.35s;

    overflow:hidden;

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:#7ED957;

    box-shadow:0 25px 50px rgba(0,0,0,.35);

}

/* Barra verde superior */

.process-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#7ED957;

}

/* ==========================================================
   NÚMERO
========================================================== */

.process-number{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

    background:rgba(126,217,87,.12);

    border:1px solid rgba(126,217,87,.35);

    border-radius:18px;

    color:#7ED957;

    font-size:1.6rem;

    font-weight:900;

}

/* ==========================================================
   TÍTULO
========================================================== */

.process-card h3{

    font-size:1.45rem;

    margin-bottom:18px;

}

/* ==========================================================
   TEXTO
========================================================== */

.process-card p{

    color:#BDBDBD;

    line-height:1.8;

}

/* ==========================================================
   ANIMAÇÃO
========================================================== */

.process-card:hover .process-number{

    background:#7ED957;

    color:#050505;

    transition:.35s;

}
/* ==========================================================
   CTA FINAL
========================================================== */

.cta{

    position:relative;

    background:linear-gradient(
        135deg,
        #0D0D0D 0%,
        #111111 100%
    );

    overflow:hidden;

}

.cta::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(126,217,87,.08);

    filter:blur(140px);

    top:-180px;

    right:-180px;

    border-radius:50%;

}

.cta-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

}

/* ==========================================================
   TEXTO
========================================================== */

.cta-content h2{

    font-size:3.2rem;

    line-height:1.2;

    margin:20px 0;

}

.cta-content p{

    color:#C7C7C7;

    line-height:1.9;

    margin-bottom:40px;

    max-width:650px;

}

.cta-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* ==========================================================
   IMAGEM
========================================================== */

.cta-image{

    display:flex;

    justify-content:flex-end;

}

.cta-image img{

    width:100%;

    max-width:520px;

    border-radius:24px;

    object-fit:cover;

    box-shadow:0 35px 60px rgba(0,0,0,.45);

}

/* ==========================================================
   RODAPÉ
========================================================== */

.footer{

    background:#050505;

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

    padding:70px 0 25px;

}


/* ==========================================================
   COLUNAS DO RODAPÉ
========================================================== */

.footer-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:70px;

    align-items:start;

}


/* ==========================================================
   TÍTULOS DAS COLUNAS
========================================================== */

.footer-column h3{

    color:#FFFFFF;

    font-size:1.25rem;

    margin-bottom:22px;

}


/* ==========================================================
   TEXTOS E LISTAS
========================================================== */

.footer-column p,

.footer-column li{

    color:#AFAFAF;

    font-size:.95rem;

    line-height:1.9;

    list-style:none;

    overflow-wrap:anywhere;

}


.footer-column ul{

    margin:0;

    padding:0;

    list-style:none;

}


/* ==========================================================
   EFEITO NOS SERVIÇOS
========================================================== */

.footer-column li{

    transition:.3s;

}


.footer-column li:hover{

    color:#7ED957;

}


/* ==========================================================
   DIREITOS AUTORAIS
========================================================== */

.footer-bottom{

    width:min(90%,1400px);

    margin:60px auto 0;

    padding-top:25px;

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

    text-align:center;

}


.footer-bottom p{

    color:#8D8D8D;

    font-size:.9rem;

    line-height:1.5;

}
/* ==========================================================
   BOTÃO FLUTUANTE WHATSAPP
========================================================== */

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:70px;

    height:70px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#fff;

    font-size:38px;

    box-shadow:0 0 25px rgba(37,211,102,.45);

    z-index:9999;

    transition:.3s;

}

.floating-whatsapp:hover{

    transform:scale(1.08);

    box-shadow:0 0 35px rgba(37,211,102,.7);

}

.floating-whatsapp i{

    font-size:38px;

    line-height:1;

}

.floating-whatsapp:hover{

    transform:scale(1.08);

}
/* ==========================================================
   RESPONSIVIDADE — TABLETS
========================================================== */

@media (max-width: 1100px){

    .menu{

        gap:18px;

    }

    .menu a{

        font-size:.88rem;

    }

    .btn-header{

        padding:0 18px;

    }

    .hero-container{

        grid-template-columns:1fr;

        gap:50px;

        padding:150px 0 90px;

    }

    .hero-content{

        max-width:850px;

    }

    .hero-content h1{

        font-size:3.7rem;

    }

    .hero-form{

        max-width:760px;

    }

    .advantages-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .about-container,

    .cta-container{

        grid-template-columns:1fr;

    }

    .about-image{

        order:2;

    }

    .about-content{

        order:1;

    }

    .cta-image{

        justify-content:flex-start;

    }

    .footer-container{

        grid-template-columns:repeat(2,1fr);

    }

}

/* ==========================================================
   FAQ / PERGUNTAS FREQUENTES
========================================================== */

.faq{

    padding:120px 0;

    background:#0A0A0A;

}


/* Centraliza e limita a largura das perguntas */

.faq-container{

    width:100%;

    max-width:950px;

    margin:0 auto;

    display:flex;

    flex-direction:column;

    gap:18px;

}


/* Cada pergunta vira um card */

.faq-item{

    width:100%;

    background:#111111;

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

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

    transition:
        border-color .3s,
        transform .3s,
        box-shadow .3s;

}


/* Efeito ao passar o mouse */

.faq-item:hover{

    transform:translateY(-2px);

    border-color:rgba(126,217,87,.50);

    box-shadow:0 16px 35px rgba(0,0,0,.30);

}


/* Pergunta clicável */

.faq-item summary{

    position:relative;

    display:flex;

    align-items:center;

    min-height:76px;

    padding:22px 75px 22px 26px;

    color:#FFFFFF;

    font-size:1.05rem;

    font-weight:700;

    line-height:1.4;

    cursor:pointer;

    list-style:none;

    transition:
        background .3s,
        color .3s;

}


/* Remove a setinha padrão do navegador */

.faq-item summary::-webkit-details-marker{

    display:none;

}


/* Círculo verde com símbolo de mais */

.faq-item summary::after{

    content:"+";

    position:absolute;

    top:50%;

    right:24px;

    width:38px;

    height:38px;

    display:flex;

    align-items:center;

    justify-content:center;

    transform:translateY(-50%);

    background:rgba(126,217,87,.14);

    border:1px solid rgba(126,217,87,.45);

    border-radius:50%;

    color:#7ED957;

    font-size:1.65rem;

    font-weight:400;

    line-height:1;

    transition:
        transform .3s,
        background .3s,
        color .3s;

}


/* Quando a pergunta estiver aberta */

.faq-item[open]{

    border-color:#7ED957;

    box-shadow:0 18px 40px rgba(0,0,0,.35);

}


/* Fundo da pergunta aberta */

.faq-item[open] summary{

    background:rgba(126,217,87,.08);

    color:#7ED957;

}


/* Troca o sinal de mais por menos */

.faq-item[open] summary::after{

    content:"−";

    background:#7ED957;

    color:#050505;

}


/* Resposta */

.faq-item p{

    margin:0;

    padding:22px 26px 26px;

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

    color:#C8C8C8;

    font-size:1rem;

    line-height:1.8;

    background:#0D0D0D;

}


/* ==========================================================
   RESPONSIVIDADE — CELULARES E TABLETS MENORES
========================================================== */

@media (max-width: 820px){

    .header-container{

        min-height:76px;

    }

    .menu{

        position:absolute;

        top:76px;

        left:0;

        width:100%;

        display:none;

        flex-direction:column;

        align-items:flex-start;

        gap:0;

        padding:20px 5%;

        background:#080808;

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

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

    }

    .menu.active{

        display:flex;

    }

    .menu a{

        width:100%;

        padding:16px 0;

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

    }

    .menu a:last-child{

        border-bottom:none;

    }

    .menu a::after{

        display:none;

    }

    .btn-header{

        display:none;

    }

    .menu-mobile{

        display:flex;

    }

    .hero{

        min-height:auto;

    }

    .hero-container{

        padding:130px 0 80px;

    }

    .hero-content h1{

        font-size:3rem;

    }

    .hero-content p{

        font-size:1.05rem;

    }

    .hero-benefits{

        grid-template-columns:1fr;

    }

    .hero-form{

        padding:30px;

    }

    .section-header{

        margin-bottom:50px;

    }

    .section-header h2,

    .about-content h2,

    .cta-content h2{

        font-size:2.5rem;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .about-list{

        grid-template-columns:1fr;

    }
    .footer-container{

    grid-template-columns:1fr;

    gap:35px;

    text-align:center;

}


.footer-column ul{

    display:flex;

    flex-direction:column;

    align-items:center;

}

/* ==========================================================
   REDES SOCIAIS DO RODAPÉ
========================================================== */

.footer-social a{

    display:flex;

    align-items:center;

    gap:12px;

    width:max-content;

    color:#AFAFAF;

    font-size:.95rem;

    line-height:1.9;

    transition:.3s;

}

.footer-social a i{

    width:22px;

    color:#7ED957;

    font-size:1.2rem;

    text-align:center;

}

.footer-social a:hover{

    color:#7ED957;

    transform:translateX(4px);

}

}

/* ==========================================================
   RESPONSIVIDADE — CELULARES
========================================================== */

@media (max-width: 600px){

    .container{

        width:min(92%,1400px);

    }

    .logo-icon{

        width:42px;

        height:42px;

        border-radius:10px;

    }

    .logo-text strong{

        font-size:.95rem;

    }

    .logo-text span{

        font-size:.75rem;

    }

    .hero-container{

        padding:115px 0 65px;

    }

    .hero-content h1{

        font-size:2.35rem;

        line-height:1.15;

    }

    .hero-content p{

        font-size:1rem;

        line-height:1.75;

    }

    .hero-badge{

        font-size:.8rem;

        padding:9px 14px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .hero-buttons .btn-primary,

    .hero-buttons .btn-secondary{

        width:100%;

    }

    .hero-form{

        padding:24px;

        border-radius:18px;

    }

    .hero-form h2{

        font-size:1.65rem;

    }

    .advantages,

    .services,

    .about,

    .process,

    .cta{

        padding:85px 0;

    }

    .section-header h2,

    .about-content h2,

    .cta-content h2{

        font-size:2.05rem;

    }

    .section-header p,

    .about-content p,

    .cta-content p{

        font-size:.98rem;

    }

    .advantages-grid,

    .process-grid{

        grid-template-columns:1fr;

    }

    .advantage-card img{

        height:200px;

    }

    .service-card img{

        height:220px;

    }

    .about-container,

    .cta-container{

        gap:45px;

    }

    .about-content .btn-primary{

        width:100%;

    }

    .cta-buttons{

        flex-direction:column;

    }

    .cta-buttons .btn-primary,

    .cta-buttons .btn-secondary{

        width:100%;

    }

    .footer-container{

        grid-template-columns:1fr;

        gap:35px;

    }

    .footer{

        padding:65px 0 25px;

    }

    .footer-bottom{

        margin-top:50px;

    }

    .floating-whatsapp{

        right:18px;

        bottom:18px;

        width:60px;

        height:60px;

        font-size:.8rem;

    }

}
/* ===== Upload ===== */

.upload-area{
    display:block;
    border:2px dashed #2ecc71;
    border-radius:16px;
    padding:30px;
    cursor:pointer;
    transition:.3s;
    text-align:center;
    background:#f8fffb;
}

.upload-area:hover{
    background:#eefdf3;
    border-color:#1faa59;
}

.upload-content h4{
    margin:10px 0 6px;
    font-size:20px;
}

.upload-content p{
    margin:0 0 18px;
    color:#666;
}

.upload-icon{
    font-size:42px;
}

.preview-container{
    margin-top:20px;
    border-top:1px solid #ddd;
    padding-top:20px;
}

.preview-image{
    width:120px;
    height:120px;
    object-fit:cover;
    border-radius:12px;
    border:2px solid #ddd;
    margin-bottom:12px;
}

.preview-file{
    font-weight:600;
    word-break:break-word;
}

.preview-size{
    color:#777;
    margin-top:5px;
}

.preview-status{
    margin-top:12px;
    color:#198754;
    font-weight:700;
}

/* =====================================================
   LISTA COMPACTA DOS ARQUIVOS SELECIONADOS
===================================================== */

#previewLista {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 10px;
    text-align: left;
}

.preview-thumbnail {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #eeeeee;
}

.preview-thumbnail .preview-image {
    width: 100%;
    height: 100%;
    margin: 0;
    border: none;
    border-radius: 8px;
    object-fit: cover;
}

.preview-document {
    font-size: 30px;
}

.preview-info {
    min-width: 0;
    flex: 1;
}

.preview-file {
    margin: 0;
    color: #222222;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
}

.preview-size {
    margin: 4px 0 0;
    color: #666666;
    font-size: 13px;
}

.preview-status {
    margin-top: 14px;
    padding: 10px;
    color: #198754;
    background: #eaf8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

/* =====================================================
   ACABAMENTO FINAL DA ÁREA DE ARQUIVOS
===================================================== */

.upload-area {
    padding: 20px;
}

/* Esconde o ícone e os textos quando já existem arquivos */
.upload-area.tem-arquivos .upload-icon,
.upload-area.tem-arquivos .upload-content > h4,
.upload-area.tem-arquivos .upload-content > p {
    display: none;
}

.upload-area.tem-arquivos {
    padding: 14px;
}

.upload-area.tem-arquivos .preview-container {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.preview-item {
    position: relative;
    padding: 8px 42px 8px 8px;
}

.preview-thumbnail {
    width: 52px;
    height: 52px;
    min-width: 52px;
}

.preview-remove {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ffe8e8;
    color: #c62828;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.preview-remove:hover {
    background: #c62828;
    color: #ffffff;
}

.upload-area.dragging {
    border-color: #16a34a;
    background: #eaf8f0;
    transform: scale(1.01);
}

/* ===== TEMA ESCURO DA ÁREA DE UPLOAD ===== */

.upload-area{
    background:#181818;
    border:2px dashed #2fbf5b;
}

.upload-content{
    background:transparent;
}

.preview-container{
    background:transparent;
}

.preview-item{
    background:#242424;
    border:1px solid #343434;
    transition:.25s;
}

.preview-item:hover{
    background:#2d2d2d;
    border-color:#2fbf5b;
}

.preview-file{
    color:#ffffff;
}

.preview-size{
    color:#bdbdbd;
}

.preview-status{
    background:#14341f;
    color:#52d67d;
    border:1px solid #2fbf5b;
}

.preview-thumbnail{
    background:#303030;
}

.preview-remove{
    background:#3b1f1f;
    color:#ff6b6b;
}

.preview-remove:hover{
    background:#d32f2f;
    color:#fff;
}

/* ===== REFINAMENTO FINAL DO UPLOAD ===== */

.upload-area {
    padding: 14px;
}

.upload-area:not(.tem-arquivos) {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-area.tem-arquivos {
    padding: 12px;
}

#previewLista {
    gap: 8px;
}

.preview-item {
    padding: 7px 40px 7px 7px;
    min-height: 58px;
}

.preview-thumbnail {
    width: 48px;
    height: 48px;
    min-width: 48px;
}

.preview-file {
    font-size: 13px;
}

.preview-size {
    font-size: 12px;
    margin-top: 2px;
}

.preview-status {
    margin-top: 10px;
    padding: 8px;
    font-size: 13px;
}

.preview-remove {
    right: 8px;
    width: 26px;
    height: 26px;
}
/* ===== CORRIGE O HOVER DA ÁREA DE UPLOAD ===== */

.upload-area:hover,
.upload-area.dragging{
    background:#181818 !important;
    border-color:#2fbf5b !important;
    color:#ffffff !important;
}

.upload-area:hover *{
    color:inherit !important;
}

/* =====================================================
   SEÇÃO DE PRODUTOS
====================================================== */

.produtos-section {
    padding: 90px 20px;
    background:
        radial-gradient(
            circle at top right,
            rgba(47, 191, 91, 0.08),
            transparent 35%
        ),
        #0d0f0e;
}

.produtos-section .container {
    width: min(1200px, 100%);
    margin: 0 auto;
}


/* TÍTULO */

.produtos-titulo {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.produtos-etiqueta {
    display: inline-block;
    margin-bottom: 12px;
    color: #2fbf5b;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.produtos-titulo h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.produtos-titulo h2 span {
    color: #2fbf5b;
}

.produtos-titulo p {
    margin: 0;
    color: #b8b8b8;
    font-size: 1rem;
    line-height: 1.7;
}


/* GRADE */

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}


/* CARD */

.produto-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #151817;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-7px);
    border-color: rgba(47, 191, 91, 0.75);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}


/* IMAGEM */

.produto-imagem-btn {
    overflow: hidden;
    display: block;
    width: 100%;
    height: 230px;
    padding: 0;
    background: #111111;
    border: 0;
    cursor: pointer;
}

.produto-imagem-btn img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.produto-card:hover .produto-imagem-btn img {
    transform: scale(1.06);
}


/* CONTEÚDO */

.produto-conteudo {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.produto-categoria {
    margin-bottom: 8px;
    color: #2fbf5b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.produto-conteudo h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.15rem;
}

.produto-conteudo p {
    margin: 0 0 20px;
    color: #b8b8b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.produto-saiba-mais {
    align-self: flex-start;
    margin-top: auto;
    padding: 0;
    color: #2fbf5b;
    background: transparent;
    border: 0;
    font-weight: 700;
    cursor: pointer;
}

.produto-saiba-mais::after {
    content: " →";
}

.produto-saiba-mais:hover {
    color: #ffffff;
}


/* PRODUTOS QUE COMEÇAM ESCONDIDOS */

.produto-extra {
    display: none;
}

.produto-extra.produto-visivel {
    display: flex;
}


/* BOTÃO VER TODOS */

.produtos-acoes {
    margin-top: 38px;
    text-align: center;
}

.btn-ver-produtos {
    padding: 14px 28px;
    color: #2fbf5b;
    background: transparent;
    border: 1px solid #2fbf5b;
    border-radius: 7px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.btn-ver-produtos:hover {
    color: #071109;
    background: #2fbf5b;
    transform: translateY(-2px);
}


/* =====================================================
   MODAL DE IMAGEM
====================================================== */

.produto-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.88);
}

.produto-modal.aberto {
    display: flex;
}

.produto-modal-conteudo {
    position: relative;
    width: min(920px, 100%);
    max-height: 92vh;
    overflow: auto;
    padding: 18px;
    background: #111412;
    border: 1px solid rgba(47, 191, 91, 0.5);
    border-radius: 12px;
}

.produto-modal-conteudo img {
    width: 100%;
    max-height: 76vh;
    display: block;
    object-fit: contain;
    border-radius: 7px;
}

.produto-modal-conteudo h3 {
    margin: 16px 45px 2px 0;
    color: #ffffff;
    font-size: 1.2rem;
}

.produto-modal-fechar {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 2;
    width: 40px;
    height: 40px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.produto-modal-fechar:hover {
    color: #2fbf5b;
    border-color: #2fbf5b;
}


/* =====================================================
   RESPONSIVIDADE
====================================================== */

@media (max-width: 1000px) {

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

}

@media (max-width: 600px) {

    .produtos-section {
        padding: 70px 16px;
    }

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

    .produto-imagem-btn {
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

/* =====================================================
   GRADE COMPLETA DOS 5 CARDS DE SERVIÇOS
===================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    align-items: stretch;
}

/* PADRÃO PARA TODOS OS CARDS */

.services-grid > .service-card {
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    justify-self: stretch;
    align-self: stretch;
}

/* IMAGENS COM O MESMO TAMANHO */

.services-grid > .service-card > img {
    display: block;
    width: 100%;
    height: 310px;
    object-fit: cover;
}

/* CONTEÚDO INTERNO DOS CARDS */

.services-grid .service-content {
    height: 100%;
}

/* QUINTO CARD CENTRALIZADO NA TERCEIRA LINHA */

.services-grid > .service-card-manutencao {
    grid-column: 1 / -1;
    width: calc(50% - 15px);
    justify-self: center;
}

/* =====================================================
   RESPONSIVIDADE
===================================================== */

@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .services-grid > .service-card,
    .services-grid > .service-card-manutencao {
        grid-column: auto;
        width: 100%;
        justify-self: stretch;
    }

    .services-grid > .service-card > img {
        height: 240px;
    }

}