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

:root{
    --branco:#ffffff;
    --preto:#050505;
    --vermelho:#c1121f;
    --cinza:#f5f5f5;
    --grafite:#1a1a1a;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:20px;

    --transition:.4s ease;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:var(--branco);
    color:var(--preto);
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* =========================
HEADER
========================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999999;
    padding:14px 0;
    transition:var(--transition);
}

.header.scrolled{
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(15px);
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:95px;
    position:relative;
}

.logo{
    position:relative;
    z-index:999999;
}

.logo img{
    width:230px;
    object-fit:contain;
}

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

.desktop-menu{
    position:relative;
    z-index:999999;
}

.desktop-menu ul{
    display:flex;
    align-items:center;
    gap:35px;
}

.desktop-menu ul li{
    position:relative;
}

.desktop-menu a{
    color:var(--branco);
    font-weight:600;
    font-size:15px;
    position:relative;
    transition:var(--transition);
}

.header.scrolled .desktop-menu a{
    color:var(--preto);
}

.desktop-menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:var(--vermelho);
    transition:var(--transition);
}

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

/* =========================
DROPDOWN
========================= */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:55px;
    left:0;

    width:340px;

    background:var(--branco);

    padding:25px;

    border-radius:22px;

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

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:var(--transition);

    z-index:999999;

    max-height:600px;

    overflow-y:auto;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li{
    margin-bottom:14px;
}

.dropdown-menu li:last-child{
    margin-bottom:0;
}

.dropdown-menu a{
    color:var(--preto)!important;
    display:block;
    padding:8px 0;
    transition:var(--transition);
}

.dropdown-menu a:hover{
    color:var(--vermelho)!important;
    padding-left:8px;
}

.dropdown-menu::-webkit-scrollbar{
    width:6px;
}

.dropdown-menu::-webkit-scrollbar-thumb{
    background:var(--vermelho);
    border-radius:10px;
}

/* =========================
BOTÃO ORÇAMENTO
========================= */

.btn-orcamento{
    background:var(--vermelho);
    color:var(--branco);

    border:none;

    padding:15px 28px;

    border-radius:50px;

    cursor:pointer;

    font-weight:600;

    transition:var(--transition);

    position:relative;

    z-index:999999;
}

.btn-orcamento:hover{
    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(193,18,31,.25);
}

/* =========================
MENU MOBILE
========================= */

.menu-mobile-btn{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
    position:relative;
    z-index:999999;
}

.menu-mobile-btn span{
    width:30px;
    height:3px;
    background:var(--branco);
    border-radius:10px;
    transition:var(--transition);
}

.header.scrolled .menu-mobile-btn span{
    background:var(--preto);
}

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;

    width:85%;
    height:100vh;

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

    backdrop-filter:blur(20px);

    z-index:999999;

    padding:35px;

    transition:.5s ease;
}

.mobile-menu.active{
    right:0;
}

.mobile-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:40px;
}

.mobile-header img{
    width:170px;
}

.close-menu{
    background:none;
    border:none;
    color:var(--branco);
    font-size:30px;
    cursor:pointer;
}

.mobile-menu nav{
    display:flex;
    flex-direction:column;
}

.mobile-menu nav a{
    color:var(--branco);
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    font-size:17px;
}

.mobile-dropdown h4{
    color:var(--vermelho);
    margin:25px 0 15px;
}

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

.hero{
    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding-top:170px;
}

.hero video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-mobile{
    display:none;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
}

.hero-content{
    position:relative;
    z-index:10;
    color:var(--branco);
    max-width:700px;
}

.hero-tag{
    background:rgba(255,255,255,.12);

    padding:10px 18px;

    border-radius:40px;

    display:inline-block;

    margin-bottom:25px;

    backdrop-filter:blur(10px);

    font-size:14px;

    letter-spacing:1px;
}

.hero h1{
    font-family:'Bebas Neue',sans-serif;

    font-size:6.5rem;

    line-height:1;

    margin-bottom:20px;
}

.hero p{
    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

    max-width:600px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

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

.btn-primary,
.btn-secondary{
    padding:16px 34px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

    display:inline-flex;

    align-items:center;

    justify-content:center;
}

.btn-primary{
    background:var(--vermelho);
    color:var(--branco);
}

.btn-secondary{
    border:2px solid var(--branco);
    color:var(--branco);
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-5px);
}

/* =========================
SECTIONS
========================= */

section{
    padding:110px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-tag{
    color:var(--vermelho);
    font-weight:700;
    letter-spacing:2px;
}

.section-title h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:4rem;
    margin-top:10px;
}

/* =========================
SOBRE
========================= */

.sobre-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.sobre-texto h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:4rem;
    margin:20px 0;
}

.sobre-texto p{
    margin-bottom:20px;
    line-height:1.9;
}

.sobre-image img{
    border-radius:30px;
    box-shadow:var(--shadow);
}

/* =========================
CATEGORIAS
========================= */

.categorias{
    background:var(--cinza);
}

.categorias-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.categoria-card{
    background:var(--branco);

    padding:50px 30px;

    border-radius:24px;

    text-align:center;

    color:var(--preto);

    box-shadow:var(--shadow);

    transition:var(--transition);
}

.categoria-card:hover{
    transform:translateY(-10px);
}

.categoria-card i{
    font-size:42px;
    color:var(--vermelho);
    margin-bottom:25px;
}

.categoria-card h3{
    font-size:24px;
}

/* =========================
MARCAS
========================= */

.marcas-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.marca-item{
    background:var(--cinza);

    padding:35px;

    text-align:center;

    border-radius:20px;

    font-weight:700;
}

/* =========================
CTA
========================= */

.cta{
    background:var(--preto);
    color:var(--branco);
    text-align:center;
}

.cta h2{
    font-family:'Bebas Neue',sans-serif;
    font-size:5rem;
    margin-bottom:20px;
}

.cta p{
    margin-bottom:35px;
    font-size:18px;
}

/* =========================
FOOTER
========================= */

.footer{
    background:#0d0d0d;
    color:var(--branco);
    padding-top:90px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.footer-logo img{
    width:190px;
    margin-bottom:20px;
}

.footer-links,
.footer-contact{
    display:flex;
    flex-direction:column;
}

.footer h3{
    margin-bottom:20px;
}

.footer a{
    color:#ddd;
    margin-bottom:12px;
}

.footer-copy{
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    padding:30px;
    margin-top:60px;
}

/* =========================
WHATSAPP FLOAT
========================= */

.whatsapp-float{
    position:fixed;

    right:20px;
    bottom:20px;

    width:65px;
    height:65px;

    background:#25d366;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    z-index:99999;
}

/* =========================
MODAL
========================= */

.modal{
    position:fixed;

    inset:0;

    background:rgba(0,0,0,.7);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:999999;

    padding:20px;
}

.modal.active{
    display:flex;
}

.modal-content{
    background:var(--branco);

    width:100%;
    max-width:500px;

    padding:40px;

    border-radius:30px;

    position:relative;
}

.modal-content h2{
    margin-bottom:30px;
}

.close-modal{
    position:absolute;
    top:20px;
    right:20px;

    background:none;
    border:none;

    font-size:24px;

    cursor:pointer;
}

.modal form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.modal input,
.modal textarea{
    width:100%;

    padding:18px;

    border:1px solid #ddd;

    border-radius:14px;

    font-family:'Montserrat',sans-serif;
}

.modal textarea{
    height:140px;
    resize:none;
}

/* =========================
RESPONSIVO
========================= */

@media(max-width:1024px){

    .desktop-menu,
    .btn-orcamento{
        display:none;
    }

    .menu-mobile-btn{
        display:flex;
    }

    .logo img{
        width:190px;
    }

    .hero{
        padding-top:150px;
    }

    .hero h1{
        font-size:4.8rem;
    }

    .sobre-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

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

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

}

@media(max-width:768px){

    .video-desktop{
        display:none;
    }

    .video-mobile{
        display:block;
    }

    .hero{
        padding-top:140px;
    }

    .hero h1{
        font-size:3.8rem;
    }

    .hero p{
        font-size:16px;
    }

    .section-title h2,
    .sobre-texto h2,
    .cta h2{
        font-size:3rem;
    }

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

}

@media(max-width:480px){

    .hero{
        padding-top:130px;
    }

    .hero h1{
        font-size:3.2rem;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }

}





/* =========================================
CORREÇÃO DEFINITIVA HEADER + HERO
COLAR NO FINAL DO CSS
========================================= */

/* HEADER */

.header{
    padding:18px 0 !important;
}

.nav-container{
    min-height:120px !important;
    align-items:center !important;
}

/* LOGO */

.logo{
    display:flex !important;
    align-items:center !important;
    height:100% !important;
}

.logo img{
    width:200px !important;
    max-width:none !important;
    object-fit:contain !important;
    display:block !important;
}

/* HERO */

.hero{
    padding-top:150px !important;
    padding-bottom:120px !important;

    align-items:flex-start !important;
}

/* HERO CONTENT */

.hero-content{
    margin-top:40px !important;
}

/* DROPDOWN */

.dropdown{
    position:relative !important;
}

.dropdown-menu{
    position:absolute !important;

    top:65px !important;

    left:0 !important;

    width:340px !important;

    background:#fff !important;

    padding:25px !important;

    border-radius:22px !important;

    box-shadow:0 20px 50px rgba(0,0,0,.15) !important;

    opacity:0 !important;

    visibility:hidden !important;

    transform:translateY(20px) !important;

    transition:all .35s ease !important;

    z-index:999999999 !important;

    max-height:600px !important;

    overflow-y:auto !important;
}

.dropdown:hover .dropdown-menu{
    opacity:1 !important;
    visibility:visible !important;
    transform:translateY(0) !important;
}

.dropdown-menu li{
    margin-bottom:14px !important;
}

.dropdown-menu li:last-child{
    margin-bottom:0 !important;
}

.dropdown-menu a{
    color:#050505 !important;

    display:block !important;

    padding:8px 0 !important;
}

/* SCROLL MENU */

.dropdown-menu::-webkit-scrollbar{
    width:6px;
}

.dropdown-menu::-webkit-scrollbar-thumb{
    background:#c1121f;
    border-radius:20px;
}

/* MOBILE */

@media(max-width:1024px){

    .logo img{
        width:200px !important;
    }

    .hero{
        padding-top:240px !important;
    }

}

@media(max-width:768px){

    .hero{
        padding-top:150px !important;
        padding-bottom:100px !important;
    }

    .hero-content{
        margin-top:20px !important;
    }

    .hero h1{
        font-size:3.8rem !important;
    }

}

@media(max-width:480px){

    .logo img{
        width:180px !important;
    }

    .hero{
        padding-top:210px !important;
    }

    .hero h1{
        font-size:3rem !important;
    }

}



/* =========================================
CORREÇÃO NAV BRANCA + LINKS PRETOS
COLAR NO FINAL DO CSS
========================================= */

.header{
    background:#ffffff !important;

    box-shadow:0 5px 25px rgba(0,0,0,.08) !important;

    backdrop-filter:none !important;
}

.desktop-menu a{
    color:#050505 !important;
}

.desktop-menu a::after{
    background:#c1121f !important;
}

.menu-mobile-btn span{
    background:#050505 !important;
}

/* HERO SOBE ABAIXO DA NAV */

.hero{
    padding-top:150px !important;
}





/* =========================================
CORREÇÃO DROPDOWN DESKTOP
========================================= */

/* HEADER NÃO PODE CORTAR O MENU */

.header{
    overflow:visible !important;
}

.nav-container{
    overflow:visible !important;
}

/* DROPDOWN */

.dropdown{
    position:relative !important;
}

.dropdown-menu{

    position:absolute !important;

    top:60px !important;

    left:0 !important;

    width:340px !important;

    background:#ffffff !important;

    border-radius:22px !important;

    padding:25px !important;

    box-shadow:0 20px 50px rgba(0,0,0,.15) !important;

    z-index:999999999 !important;

    opacity:0 !important;

    visibility:hidden !important;

    transform:translateY(15px) !important;

    transition:all .35s ease !important;

    max-height:none !important;

    overflow:visible !important;
}

/* MOSTRAR MENU */

.dropdown:hover .dropdown-menu{

    opacity:1 !important;

    visibility:visible !important;

    transform:translateY(0) !important;
}

/* ITENS */

.dropdown-menu li{
    margin-bottom:14px !important;
}

.dropdown-menu li:last-child{
    margin-bottom:0 !important;
}

.dropdown-menu a{

    color:#050505 !important;

    display:block !important;

    padding:8px 0 !important;

    white-space:normal !important;
}

/* EFEITO HOVER */

.dropdown-menu a:hover{

    color:#c1121f !important;

    padding-left:8px !important;
}




/* =========================================
CORREÇÃO SUBMENU VERTICAL
========================================= */

.dropdown-menu{

    display:flex !important;

    flex-direction:column !important;

    align-items:flex-start !important;

    gap:0 !important;
}

/* LISTA */

.dropdown-menu li{

    width:100% !important;

    display:block !important;

    margin-bottom:14px !important;
}

.dropdown-menu li:last-child{
    margin-bottom:0 !important;
}

/* LINKS */

.dropdown-menu a{

    display:block !important;

    width:100% !important;

    color:#050505 !important;

    padding:8px 0 !important;

    white-space:normal !important;
}


/* =========================================
CORREÇÃO ESPAÇAMENTO SUBMENU
========================================= */

.dropdown-menu{

    padding:18px 20px !important;
}

/* ITENS */

.dropdown-menu li{

    margin-bottom:4px !important;

    line-height:1.1 !important;
}

.dropdown-menu li:last-child{
    margin-bottom:0 !important;
}

/* LINKS */

.dropdown-menu a{

    padding:4px 0 !important;

    font-size:14px !important;

    line-height:1.2 !important;
}









/* =========================================
CORREÇÃO HERO VIDEO
COLAR NO FINAL DO CSS
========================================= */

.hero{

    min-height:100vh !important;

    height:auto !important;

    justify-content:center !important;

    align-items:center !important;

    padding-top:220px !important;

    padding-bottom:140px !important;

    overflow:hidden !important;
}

/* CONTEÚDO HERO */

.hero-content{

    width:100% !important;

    max-width:700px !important;

    padding:0 15px !important;

    margin-top:0 !important;

    position:relative !important;

    z-index:10 !important;
}

/* BOTÕES */

.hero-buttons{

    display:flex !important;

    gap:18px !important;

    flex-wrap:wrap !important;

    margin-top:35px !important;
}

/* BOTÕES NÃO ESTOURAREM */

.btn-primary,
.btn-secondary{

    display:inline-flex !important;

    align-items:center !important;

    justify-content:center !important;
}

/* MOBILE */

@media(max-width:768px){

    .hero{

        min-height:auto !important;

        padding-top:180px !important;

        padding-bottom:120px !important;
    }

    .hero-buttons{

        flex-direction:column !important;

        width:100% !important;
    }

    .btn-primary,
    .btn-secondary{

        width:100% !important;

        text-align:center !important;
    }

    .hero h1{
        font-size:3.5rem !important;
    }

    .hero p{
        font-size:16px !important;
    }

}

/* MOBILE PEQUENO */

@media(max-width:480px){

    .hero{

        padding-top:170px !important;

        padding-bottom:100px !important;
    }

    .hero h1{

        font-size:2.9rem !important;

        line-height:1 !important;
    }

    .hero p{

        font-size:15px !important;

        line-height:1.7 !important;
    }

    
    
    
/* =========================================
CORREÇÃO DEFINITIVA SUBLINKS MOBILE
========================================= */

/* BLOCO PRODUTOS */

.mobile-dropdown{

    width:100% !important;

    display:block !important;

    margin-top:25px !important;

    padding:22px !important;

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

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

    border-radius:22px !important;
}

/* TÍTULO */

.mobile-dropdown h4{

    display:block !important;

    width:100% !important;

    color:#c1121f !important;

    font-size:20px !important;

    font-weight:700 !important;

    margin-bottom:18px !important;

    padding-bottom:12px !important;

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

/* LINKS UM ABAIXO DO OUTRO */

.mobile-dropdown a{

    display:block !important;

    width:100% !important;

    clear:both !important;

    float:none !important;

    color:#ffffff !important;

    font-size:15px !important;

    line-height:1.5 !important;

    padding:13px 0 !important;

    margin:0 !important;

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

    text-align:left !important;

    white-space:normal !important;
}

/* REMOVE BORDA DO ÚLTIMO */

.mobile-dropdown a:last-child{

    border-bottom:none !important;
}

/* HOVER */

.mobile-dropdown a:hover{

    color:#c1121f !important;

    padding-left:10px !important;
}
    
    
    

/* =========================================
MODAL PREMIUM MULTMAK
========================================= */

/* FUNDO */

.modal{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(10px);

    display:flex;

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

    opacity:0;
    visibility:hidden;

    transition:.45s ease;

    z-index:999999;
}

/* MODAL ABERTO */

.modal.active{

    opacity:1;
    visibility:visible;
}

/* CAIXA */

.modal-content{

    position:relative;

    width:100%;
    max-width:520px;

    padding:45px;

    border-radius:30px;

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

    backdrop-filter:blur(20px);

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

    transform:translateY(40px) scale(.96);

    opacity:0;

    transition:
    transform .55s cubic-bezier(.22,1,.36,1),
    opacity .45s ease;
}

/* ENTRADA SUAVE */

.modal.active .modal-content{

    transform:translateY(0) scale(1);

    opacity:1;
}

/* TÍTULO */

.modal-content h2{

    font-family:'Bebas Neue',sans-serif;

    font-size:3rem;

    letter-spacing:1px;

    margin-bottom:30px;

    color:#050505;
}

/* BOTÃO FECHAR */

.close-modal{

    position:absolute;

    top:22px;
    right:22px;

    width:42px;
    height:42px;

    border:none;

    border-radius:50%;

    background:#f3f3f3;

    color:#050505;

    cursor:pointer;

    transition:.3s ease;
}

.close-modal:hover{

    background:#c1121f;

    color:#ffffff;

    transform:rotate(90deg);
}

/* FORM */

.modal form{

    display:flex;

    flex-direction:column;

    gap:18px;
}

/* INPUTS */

.modal input,
.modal textarea{

    width:100%;

    padding:18px 20px;

    border-radius:16px;

    border:1px solid #e3e3e3;

    background:#ffffff;

    font-size:15px;

    font-family:'Montserrat',sans-serif;

    transition:.35s ease;

    outline:none;
}

/* TEXTAREA */

.modal textarea{

    height:140px;

    resize:none;
}

/* FOCUS PREMIUM */

.modal input:focus,
.modal textarea:focus{

    border-color:#c1121f;

    box-shadow:
    0 0 0 5px rgba(193,18,31,.08);

    transform:translateY(-2px);
}

/* PLACEHOLDER */

.modal input::placeholder,
.modal textarea::placeholder{

    color:#999;
}

/* BOTÃO */

.modal .btn-primary{

    width:100%;

    height:58px;

    border:none;

    border-radius:18px;

    background:#c1121f;

    color:#ffffff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s ease;
}

/* HOVER BOTÃO */

.modal .btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:
    0 20px 35px rgba(193,18,31,.28);
}

/* MOBILE */

@media(max-width:768px){

    .modal{

        padding:20px;
    }

    .modal-content{

        padding:35px 25px;
    }

    .modal-content h2{

        font-size:2.4rem;
    }

}
    
    
/* =========================================
CORREÇÃO DEFINITIVA MODAL PREMIUM
========================================= */

/* MODAL FUNDO */

.modal{

    position:fixed !important;

    inset:0 !important;

    display:flex !important;

    align-items:center !important;

    justify-content:center !important;

    padding:20px !important;

    background:rgba(0,0,0,.55) !important;

    backdrop-filter:blur(12px) !important;

    z-index:999999 !important;

    opacity:0 !important;

    visibility:hidden !important;

    pointer-events:none !important;

    transition:
    opacity .45s ease,
    visibility .45s ease !important;
}

/* MODAL ATIVO */

.modal.active{

    opacity:1 !important;

    visibility:visible !important;

    pointer-events:auto !important;
}

/* CAIXA */

.modal-content{

    position:relative !important;

    width:100% !important;

    max-width:520px !important;

    padding:45px !important;

    border-radius:32px !important;

    background:rgba(255,255,255,.94) !important;

    backdrop-filter:blur(25px) !important;

    box-shadow:
    0 30px 80px rgba(0,0,0,.18) !important;

    transform:
    translateY(80px)
    scale(.92) !important;

    opacity:0 !important;

    transition:
    transform .6s cubic-bezier(.22,1,.36,1),
    opacity .5s ease !important;
}

/* ANIMAÇÃO SUAVE */

.modal.active .modal-content{

    transform:
    translateY(0)
    scale(1) !important;

    opacity:1 !important;
}

/* INPUTS */

.modal input,
.modal textarea{

    transition:
    border .35s ease,
    box-shadow .35s ease,
    transform .35s ease !important;
}

/* FOCUS PREMIUM */

.modal input:focus,
.modal textarea:focus{

    transform:translateY(-2px) !important;

    border-color:#c1121f !important;

    box-shadow:
    0 0 0 5px rgba(193,18,31,.08) !important;
}

/* BOTÃO */

.modal .btn-primary{

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease !important;
}

.modal .btn-primary:hover{

    transform:translateY(-3px) !important;

    box-shadow:
    0 18px 35px rgba(193,18,31,.25) !important;
}

/* MOBILE */

@media(max-width:768px){

    .modal-content{

        padding:35px 25px !important;
    }

}  
    
    
/* =========================================
   CORREÇÃO DEFINITIVA DROPDOWN PRODUTOS
========================================= */

.dropdown{
    position:relative;
}

/* ÁREA DO LINK PRODUTOS */

.dropdown > a{
    display:flex;
    align-items:center;
    height:70px;
    position:relative;
    z-index:10;
}

/* MENU DROPDOWN */

.dropdown-menu{

    position:absolute;

    top:65px;

    left:0;

    width:320px;

    background:#ffffff;

    border-radius:18px;

    padding:12px 0;

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

    display:flex;
    flex-direction:column;

    gap:0;

    opacity:0;

    visibility:hidden;

    transform:translateY(12px);

    transition:
    opacity .30s ease,
    transform .30s ease,
    visibility .30s ease;

    z-index:9999;
}

/* ÁREA INVISÍVEL PARA NÃO SUMIR */

.dropdown::before{

    content:'';

    position:absolute;

    left:0;

    top:100%;

    width:100%;

    height:35px;

    background:transparent;
}

/* HOVER */

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* LINKS */

.dropdown-menu li{
    width:100%;
}

.dropdown-menu a{

    width:100%;

    display:flex;

    align-items:center;

    padding:12px 24px;

    color:#111 !important;

    font-size:15px;

    font-weight:500;

    transition:.25s ease;
}

/* EFEITO PREMIUM */

.dropdown-menu a:hover{

    background:#f5f5f5;

    color:#c1121f !important;

    padding-left:32px;
}    
    
    
    
    
.mobile-orcamento{
    padding: 25px 20px 10px;
}

.btn-orcamento-mobile{
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;

    background: linear-gradient(135deg,#d50000,#ff1744);
    color: #fff;

    box-shadow:
        0 10px 30px rgba(213,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.25);

    transition: .35s ease;
}

.btn-orcamento-mobile:hover{
    transform: translateY(-3px);
    box-shadow:
        0 14px 35px rgba(213,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.25);
}  
    
    
    
    
    
    
    
    
    /* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    padding: 20px;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 95%;
    max-height: 90vh;
    border-radius: 12px;
    object-fit: contain;

    transform: scale(0.9);
    transition: 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

/* BOTÃO FECHAR */
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,0.15);
    color: #fff;

    font-size: 22px;
    cursor: pointer;

    transition: 0.3s ease;
}

.lightbox-close:hover {
    background: #d40000;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .lightbox {
        padding: 15px;
    }

    .lightbox img {
        max-width: 100%;
        max-height: 80vh;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
    
.gallery img {
    cursor: pointer;
}  
    
    
    
/* LIGHTBOX */

.gallery img {
    cursor: pointer;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);

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

    z-index: 999999;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {

    max-width: 90%;
    max-height: 90vh;

    border-radius: 10px;

    transform: scale(.8);
    transition: .3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {

    position: absolute;

    top: 20px;
    right: 25px;

    color: white;

    font-size: 45px;

    cursor: pointer;

    z-index: 10;
}

@media(max-width:768px){

    .lightbox-img{
        max-width:95%;
    }

    .lightbox-close{
        font-size:38px;
        top:15px;
        right:20px;
    }

}  
    
    
.lightbox-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:20px;
    cursor:pointer;
    animation: fadeIn .3s ease;
}

.lightbox-overlay img{
    max-width:90%;
    max-height:90%;
    border-radius:14px;
    box-shadow:0 0 40px rgba(0,0,0,.5);
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
} 
    
    
.lightbox-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:999999;
    padding:20px;
}

.lightbox-overlay img{
    max-width:90%;
    max-height:90%;
    border-radius:12px;
}    
    

.produto-overlay,
.zoom-icon{
    pointer-events: none;
}
    
.gallery{
    position: relative;
    display:block;
    cursor:pointer;
}

.produto-overlay,
.zoom-icon{
    pointer-events:none;
} 
    
.gallery{
    position:relative;
    display:block;
    overflow:hidden;
    cursor:pointer;
}

.produto-overlay,
.zoom-icon{
    pointer-events:none;
}

/* LIGHTBOX */

.lightbox-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.0);

    backdrop-filter:blur(0px);

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

    z-index:999999;

    padding:40px;

    opacity:0;

    transition:
    opacity .35s ease,
    background .35s ease,
    backdrop-filter .35s ease;
}

.lightbox-overlay.active{
    opacity:1;
    background:rgba(0,0,0,.88);
    backdrop-filter:blur(8px);
}

.lightbox-image{
    max-width:90%;
    max-height:90vh;

    border-radius:18px;

    transform:scale(.86);

    opacity:0;

    transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    opacity .35s ease;

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

.lightbox-overlay.active .lightbox-image{
    transform:scale(1);
    opacity:1;
}

.lightbox-close{
    position:absolute;
    top:25px;
    right:30px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

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

    color:#fff;

    font-size:32px;

    cursor:pointer;

    transition:.3s ease;

    backdrop-filter:blur(10px);
}

.lightbox-close:hover{
    background:#fff;
    color:#111;
    transform:rotate(90deg);
}    
    
 
    
    
   
    
    
 
    
    
    .gallery{
    position:relative;
    display:block;
    cursor:pointer;
    overflow:hidden;
}

.produto-overlay,
.zoom-icon{
    pointer-events:none;
}

.lightbox-overlay{
    position:fixed;
    inset:0;
     
   background:rgba(0,0,0,.88);

    backdrop-filter:blur(0px);

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

    z-index:999999;

    padding:40px;

    opacity:0;

    transition:
    opacity .35s ease,
    background .35s ease,
    backdrop-filter .35s ease;
}

.lightbox-overlay.active{
    opacity:1;
    background:rgba(0,0,0,.88);
   
}

.lightbox-image{
    max-width:90%;
    max-height:90vh;

    object-fit:contain;

    border-radius:18px;

    transform:scale(.86);

    opacity:0;

    transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    opacity .35s ease;

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

.lightbox-overlay.active .lightbox-image{
    transform:scale(1);
    opacity:1;
}

.lightbox-close{
    position:absolute;
    top:25px;
    right:30px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

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

    color:#fff;

    font-size:32px;

    cursor:pointer;

    transition:.3s ease;

    
}

.lightbox-close:hover{
    background:#fff;
    color:#111;
    transform:rotate(90deg);
}
    
    
    

    
    
    
 /* =========================================
LIGHTBOX PREMIUM FINAL
========================================= */

.gallery{
    position:relative;
    display:block;
    cursor:pointer;
    overflow:hidden;
}

.produto-overlay,
.zoom-icon{
    pointer-events:none;
}

.lightbox-overlay{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.88);

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

    z-index:999999;

    padding:40px;

    opacity:0;

    transition:
    opacity .35s ease,
    background .35s ease;
}

.lightbox-overlay.active{
    opacity:1;
}

.lightbox-image{
    max-width:90%;
    max-height:90vh;

    object-fit:contain;

    border-radius:18px;

    transform:scale(.86);

    opacity:0;

    transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    opacity .35s ease;

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

.lightbox-overlay.active .lightbox-image{
    transform:scale(1);
    opacity:1;
}

.lightbox-close{
    position:absolute;
    top:25px;
    right:30px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

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

    color:#fff;

    font-size:32px;

    cursor:pointer;

    transition:.3s ease;
}

.lightbox-close:hover{
    background:#fff;
    color:#111;
    transform:rotate(90deg);
}   
    
    
.gallery{
    display:block;
    cursor:pointer;
}

/* LIGHTBOX */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);

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

    z-index:999999;

    opacity:0;
    transition:.3s ease;
}

.lightbox.active{
    opacity:1;
}

.lightbox img{

    max-width:90%;
    max-height:90vh;

    border-radius:14px;
}

.lightbox-close{

    position:absolute;

    top:20px;
    right:30px;

    color:#fff;

    font-size:45px;

    cursor:pointer;
}
    
/* LIGHTBOX */

.lightbox{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.92);

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

    z-index:999999;

    opacity:0;

    transition:.3s ease;
}

.lightbox.active{
    opacity:1;
}

.lightbox img{
    max-width:90%;
    max-height:90vh;
    border-radius:14px;
}

.lightbox-close{
    position:absolute;
    top:20px;
    right:30px;

    color:#fff;
    font-size:45px;
}    
    

    
    
    
    
    
/* LIGHTBOX */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:999999;

    opacity:0;

    transition:.35s ease;
}

.lightbox.active{
    opacity:1;
}

.lightbox-img{

    max-width:60%;

    max-height:90vh;

    border-radius:18px;

    transform:scale(.9);

    transition:.35s ease;
}

.lightbox.active .lightbox-img{

    transform:scale(1);
}

.lightbox-close{

    position:absolute;

    top:20px;

    right:30px;

    color:#fff;

    font-size:45px;

    cursor:pointer;
}

.gallery img{
    cursor:pointer;
}    
    
    
    


  