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

:root{
    --lucar-blue:#0072bc;
    --lucar-dark-blue:#003b73;
    --lucar-red:#ed1c24;
    --lucar-white:#ffffff;
    --lucar-gray:#f4f7fb;
    --lucar-text:#1d2733;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#ffffff;
    color:var(--lucar-text);
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

.lucar-container{
    width:min(1180px,92%);
    margin:auto;
}

/* HEADER */

.lucar-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(18px);
    box-shadow:
    0 12px 40px rgba(0,0,0,.08),
    0 2px 8px rgba(0,0,0,.05);
}

.lucar-header-container{
    width:min(1220px,94%);
    margin:auto;
    min-height:115px;
    padding:12px 0;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.lucar-logo{
    display:flex;
    align-items:center;
}

.lucar-logo img{
    width:190px;
    height:auto;
    max-height:90px;
    object-fit:contain;
    display:block;
}

.lucar-nav{
    display:flex;
    align-items:center;
    gap:30px;
}

.lucar-nav a,
.lucar-budget-link{
    border:0;
    background:none;
    font:inherit;
    font-weight:800;
    color:var(--lucar-dark-blue);
    cursor:pointer;
    transition:.3s;
}

.lucar-nav a:hover,
.lucar-nav a.active,
.lucar-budget-link:hover{
    color:var(--lucar-red);
}

.lucar-budget-link{
    background:var(--lucar-red);
    color:#fff;
    padding:13px 22px;
    border-radius:999px;
    box-shadow:0 12px 30px rgba(237,28,36,.28);
}

.lucar-budget-link:hover{
    color:#fff;
    transform:translateY(-2px);
}

.lucar-menu-btn,
.lucar-nav-close{
    display:none;
}

/* HERO EMPRESA COM IMAGEM FIXA */

.lucar-empresa-hero{
    min-height:94vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding-top:145px;
}

.lucar-empresa-hero picture,
.lucar-empresa-hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.lucar-empresa-hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(90deg,rgba(0,35,77,.96),rgba(0,58,115,.76),rgba(237,28,36,.28)),
    linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.58));
}

.lucar-empresa-hero-content{
    position:relative;
    z-index:2;
    width:min(1180px,92%);
    margin:auto;
    color:#fff;
    max-width:820px;
    padding-top:25px;
}

.lucar-tag,
.lucar-section-tag{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:22px;
}

.lucar-tag{
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.30);
    color:#fff;
}

.lucar-section-tag{
    background:rgba(0,114,188,.09);
    color:var(--lucar-blue);
    border:1px solid rgba(0,114,188,.18);
}

.lucar-empresa-hero-content h1{
    font-size:clamp(36px,5.8vw,74px);
    line-height:1;
    font-weight:900;
    margin-bottom:24px;
    text-transform:uppercase;
}

.lucar-empresa-hero-content p{
    font-size:clamp(17px,2vw,22px);
    line-height:1.6;
    max-width:720px;
    margin-bottom:22px;
}

.lucar-hero-info{
    display:inline-flex;
    background:#fff;
    color:var(--lucar-dark-blue);
    padding:14px 20px;
    border-left:6px solid var(--lucar-red);
    border-radius:14px;
    font-weight:900;
    margin-bottom:28px;
}

.lucar-hero-btn,
.lucar-cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:0;
    cursor:pointer;
    font-family:'Montserrat',sans-serif;
    font-weight:900;
    border-radius:999px;
    transition:.3s;
    background:var(--lucar-red);
    color:#fff;
    padding:18px 30px;
    box-shadow:0 20px 45px rgba(237,28,36,.35);
}

.lucar-hero-btn:hover,
.lucar-cta-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 25px 55px rgba(237,28,36,.45);
}

/* APRESENTAÇÃO */

.lucar-empresa-apresentacao{
    padding:100px 0;
    background:#ffffff;
}

.lucar-apresentacao-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:55px;
    align-items:center;
}

.lucar-apresentacao-text h2,
.lucar-section-title h2,
.lucar-empresa-cta h2{
    font-size:clamp(30px,4vw,52px);
    line-height:1.08;
    color:var(--lucar-dark-blue);
    margin-bottom:24px;
    font-weight:900;
}

.lucar-apresentacao-text p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:18px;
}

.lucar-apresentacao-destaque{
    background:
    linear-gradient(135deg,rgba(0,59,115,.97),rgba(0,114,188,.92));
    color:#fff;
    padding:44px;
    border-radius:30px;
    box-shadow:0 30px 70px rgba(0,59,115,.22);
    border-bottom:7px solid var(--lucar-red);
    position:relative;
    overflow:hidden;
}

.lucar-apresentacao-destaque::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    right:-60px;
    top:-60px;
}

.lucar-apresentacao-destaque h3{
    font-size:32px;
    line-height:1.1;
    margin-bottom:18px;
    font-weight:900;
    position:relative;
}

.lucar-apresentacao-destaque p{
    line-height:1.8;
    margin-bottom:24px;
    position:relative;
}

.lucar-apresentacao-destaque strong{
    display:block;
    position:relative;
}

/* SLIDESHOW */

.lucar-slideshow-section{
    padding:105px 0;
    background:linear-gradient(180deg,#f4f7fb,#ffffff);
}

.lucar-section-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 55px;
}

.lucar-section-title p{
    font-size:18px;
    line-height:1.7;
}

.lucar-premium-slider{
    height:640px;
    position:relative;
    border-radius:36px;
    overflow:hidden;
    background:var(--lucar-dark-blue);
    box-shadow:0 35px 90px rgba(0,59,115,.22);
}

.lucar-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transform:scale(1.05);
    transition:opacity .8s ease, transform 1.2s ease;
}

.lucar-slide.active{
    opacity:1;
    transform:scale(1);
    z-index:2;
}

.lucar-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.lucar-slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(90deg,rgba(0,35,77,.92),rgba(0,59,115,.45),rgba(0,0,0,.10)),
    linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.58));
}

.lucar-slide-content{
    position:absolute;
    left:52px;
    bottom:52px;
    z-index:4;
    max-width:610px;
    color:#fff;
}

.lucar-slide-content span{
    display:inline-flex;
    background:var(--lucar-red);
    color:#fff;
    padding:9px 15px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.07em;
    margin-bottom:16px;
}

.lucar-slide-content h3{
    font-size:clamp(28px,4vw,50px);
    line-height:1.04;
    font-weight:900;
    margin-bottom:14px;
}

.lucar-slide-content p{
    font-size:17px;
    line-height:1.7;
}

.lucar-slider-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
    width:58px;
    height:58px;
    border-radius:50%;
    border:0;
    background:rgba(255,255,255,.92);
    color:var(--lucar-dark-blue);
    font-size:42px;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.lucar-slider-arrow:hover{
    background:var(--lucar-red);
    color:#fff;
}

.lucar-slider-prev{
    left:24px;
}

.lucar-slider-next{
    right:24px;
}

.lucar-slider-dots{
    position:absolute;
    left:50%;
    bottom:24px;
    transform:translateX(-50%);
    z-index:12;
    display:flex;
    gap:10px;
}

.lucar-slider-dot{
    width:12px;
    height:12px;
    border-radius:999px;
    border:0;
    background:rgba(255,255,255,.55);
    cursor:pointer;
    transition:.3s;
}

.lucar-slider-dot.active{
    width:36px;
    background:var(--lucar-red);
}

/* DIFERENCIAIS */

.lucar-diferenciais{
    padding:100px 0;
    background:#fff;
}

.lucar-diferenciais-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.lucar-diferencial-card{
    background:#fff;
    padding:36px;
    border-radius:28px;
    box-shadow:0 18px 45px rgba(0,59,115,.08);
    border:1px solid rgba(0,114,188,.10);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.lucar-diferencial-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,var(--lucar-blue),var(--lucar-red));
    opacity:0;
    transition:.35s;
}

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

.lucar-diferencial-card:hover::before{
    opacity:1;
}

.lucar-diferencial-card *{
    position:relative;
    z-index:2;
}

.lucar-diferencial-card span{
    display:block;
    color:var(--lucar-red);
    font-weight:900;
    font-size:42px;
    margin-bottom:18px;
}

.lucar-diferencial-card h3{
    color:var(--lucar-dark-blue);
    font-size:25px;
    margin-bottom:12px;
    font-weight:900;
}

.lucar-diferencial-card p{
    line-height:1.7;
}

.lucar-diferencial-card:hover span,
.lucar-diferencial-card:hover h3,
.lucar-diferencial-card:hover p{
    color:#fff;
}

/* CTA */

.lucar-empresa-cta{
    padding:100px 0;
    background:
    linear-gradient(135deg,rgba(0,59,115,.94),rgba(0,114,188,.90)),
    url("../images/empresa/herodesktop.jpg") center/cover;
    color:#fff;
    text-align:center;
}

.lucar-empresa-cta h2{
    color:#fff;
}

.lucar-empresa-cta p{
    font-size:20px;
    margin-bottom:28px;
}

/* FLOAT */

.lucar-float-whatsapp{
    position:fixed;
    right:22px;
    bottom:24px;
    z-index:998;
    background:#25d366;
    color:#fff;
    padding:16px 22px;
    border-radius:999px;
    font-weight:900;
    box-shadow:0 18px 45px rgba(37,211,102,.38);
    animation:lucarPulse 1.8s infinite;
}

@keyframes lucarPulse{
    0%{transform:scale(1)}
    50%{transform:scale(1.06)}
    100%{transform:scale(1)}
}

.lucar-scroll-top{
    position:fixed;
    left:22px;
    bottom:24px;
    width:52px;
    height:52px;
    border-radius:50%;
    border:0;
    background:var(--lucar-blue);
    color:#fff;
    font-size:24px;
    font-weight:900;
    cursor:pointer;
    z-index:998;
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.3s;
}

.lucar-scroll-top.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* REVEAL */

.reveal-lucar{
    opacity:0;
    transform:translateY(45px);
    transition:opacity .8s ease, transform .8s ease;
}

.reveal-lucar.lucar-visible{
    opacity:1;
    transform:translateY(0);
}

/* MOBILE */

@media(max-width:900px){

    .lucar-header-container{
        min-height:95px;
        padding:10px 0;
    }

    .lucar-logo img{
        width:155px;
        max-height:75px;
    }

    .lucar-menu-btn{
        display:flex;
        flex-direction:column;
        gap:6px;
        border:0;
        background:var(--lucar-dark-blue);
        padding:13px;
        border-radius:14px;
        cursor:pointer;
    }

    .lucar-menu-btn span{
        width:28px;
        height:3px;
        background:#fff;
        border-radius:999px;
    }

    .lucar-nav{
        position:fixed;
        top:0;
        right:-100%;
        width:82%;
        max-width:360px;
        height:100vh;
        background:linear-gradient(180deg,var(--lucar-dark-blue),var(--lucar-blue));
        flex-direction:column;
        align-items:flex-start;
        justify-content:flex-start;
        padding:95px 30px 30px;
        gap:24px;
        transition:.45s ease;
        box-shadow:-20px 0 60px rgba(0,0,0,.25);
    }

    .lucar-nav.active{
        right:0;
    }

    .lucar-nav a,
    .lucar-budget-link{
        color:#fff;
        font-size:18px;
    }

    .lucar-budget-link{
        background:var(--lucar-red);
    }

    .lucar-nav-close{
        display:block;
        position:absolute;
        top:24px;
        right:24px;
        width:44px;
        height:44px;
        border-radius:50%;
        border:0;
        background:#fff;
        color:var(--lucar-red);
        font-size:34px;
        cursor:pointer;
        line-height:1;
    }

    .lucar-empresa-hero{
        min-height:92vh;
        padding-top:130px;
    }

    .lucar-empresa-hero-content{
        padding:40px 0;
    }

    .lucar-apresentacao-grid,
    .lucar-diferenciais-grid{
        grid-template-columns:1fr;
    }

    .lucar-empresa-apresentacao,
    .lucar-slideshow-section,
    .lucar-diferenciais,
    .lucar-empresa-cta{
        padding:75px 0;
    }

    .lucar-premium-slider{
        height:540px;
        border-radius:26px;
    }

    .lucar-slide-content{
        left:24px;
        right:24px;
        bottom:58px;
        max-width:none;
    }

    .lucar-slide-content p{
        font-size:15px;
    }

    .lucar-slider-arrow{
        width:46px;
        height:46px;
        font-size:34px;
    }

    .lucar-slider-prev{
        left:14px;
    }

    .lucar-slider-next{
        right:14px;
    }

    .lucar-float-whatsapp{
        right:16px;
        bottom:18px;
        padding:14px 18px;
        font-size:14px;
    }

    .lucar-scroll-top{
        left:16px;
        bottom:18px;
    }
}