﻿/* ===================================
   LF MONTAGENS ELETROMECÂNICAS
=================================== */

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

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#222;
    overflow-x:hidden;
}

/*========================*/

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

/*========================*/

header{
    width:100%;
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.65),
    rgba(0,0,0,.65)),
    url("../img/banner.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

/*========================*/

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:rgba(8,25,45,.90);
    backdrop-filter:blur(12px);
    z-index:9999;
    transition:.4s;
}

/*========================*/

.logo img{
    height:75px;
}

/*========================*/

.navbar ul{
    display:flex;
    gap:35px;
    list-style:none;
}

.navbar ul li a{
    color:#FFF;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.navbar ul li a:hover{
    color:#00b4ff;
}

/*========================*/

.orcamento-topo{
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}

.orcamento-topo:hover{
    transform:translateY(-3px);
    background:#1db954;
}

/*========================*/

.hero{
    width:100%;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    position:relative;
    padding-top:120px;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.hero-texto{
    position:relative;
    color:white;
    z-index:2;
    width:85%;
}

.hero-texto h1{
    font-size:72px;
    font-weight:800;
    line-height:80px;
    margin-bottom:25px;
    text-shadow:0 10px 30px rgba(0,0,0,.45);
}

.hero-texto h1 span{
    color:#00b4ff;
}

.hero-texto p{
    font-size:23px;
    max-width:900px;
    margin:auto;
    line-height:40px;
    margin-bottom:45px;
    text-shadow:0 5px 20px rgba(0,0,0,.35);
}

.hero-texto a{
    display:inline-block;
    background:#0077ff;
    color:white;
    padding:18px 45px;
    border-radius:60px;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.35s;
    box-shadow:0 15px 30px rgba(0,119,255,.35);
}

.hero-texto a:hover{
    transform:translateY(-5px)
    background:#005fd6;
}

/*========================*/

.empresa{

    padding:40px 0 100px;

    background:white;

}

.empresa h2{
    font-size:42px;
    text-align:center;
    color:#0b2b4a;
    margin-bottom:30px;
}

.empresa p{
    max-width:950px;
    margin:auto;
    text-align:center;
    line-height:34px;
    font-size:18px;
}

/*========================*/

.servicos{
    padding:100px 0;
    background:#eef2f7;
}

.servicos h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
    color:#0b2b4a;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.card{
    background:#FFF;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    overflow:hidden;
    position:relative;
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.card i{
    font-size:55px;
    color:#0077ff;
    margin-bottom:25px;
}

.card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#0b2b4a;
}

.card p{
    line-height:28px;
    margin-bottom:30px;
    color:#555;
}

.card a{
    display:inline-block;
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.card a:hover{
    background:#1da851;
    transform:scale(1.05);
}

/*========================*/

.cta{
    background:#0b2b4a;
    color:white;
    text-align:center;
    padding:100px 20px;
}

.cta h2{
    font-size:45px;
    margin-bottom:20px;
}

.cta p{
    font-size:20px;
    margin-bottom:40px;
}

.cta a{
    display:inline-block;
    padding:18px 45px;
    background:#25D366;
    color:white;
    border-radius:50px;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.cta a:hover{
    transform:scale(1.08);
}

/*========================*/

footer{
    background:#061829;
    color:white;
    text-align:center;
    padding:60px 20px;
}

footer h2{
    font-size:32px;
    margin-bottom:20px;
}

footer p{
    margin:12px 0;
    font-size:18px;
}

/*========================*/

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:white;
    font-size:34px;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    z-index:999;
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.12);
}

/*========================*/

@media(max-width:992px){
    .navbar{
        flex-direction:column;
        gap:20px;
    }
    .hero-texto h1{
        font-size:45px;
        line-height:50px;
    }
    .hero-texto p{
        font-size:18px;
        line-height:30px;
    }
    .cards{
        grid-template-columns:1fr;
    }
}

/*==========================================
GALERIA DOS SERVIÇOS
==========================================*/

.subtitulo{
    text-align:center;
    font-size:20px;
    color:#666;
    margin-top:-20px;
    margin-bottom:70px;
}

.servico{
    background:#ffffff;
    padding:60px;
    border-radius:18px;
    margin-bottom:70px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.servico:hover{
    transform:translateY(-8px);
}

.servico h3{
    font-size:34px;
    color:#0B2B4A;
    margin-bottom:20px;
}

.servico p{
    font-size:18px;
    line-height:34px;
    color:#555;
    margin-bottom:35px;
}

.galeria{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:35px;
}

.galeria img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.galeria img:hover{
    transform:scale(1.05);
}

.botao-whatsapp{
    display:inline-block;
    background:#25D366;
    color:white;
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.botao-whatsapp:hover{
    background:#1DA851;
    transform:translateY(-3px);
}

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

@media(max-width:900px){
    .galeria{
        grid-template-columns:1fr;
    }
    .servico{
        padding:30px;
    }
    .servico h3{
        font-size:28px;
    }
    .servico p{
        font-size:17px;
        line-height:30px;
    }
}

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

.diferenciais{

padding:90px 0;

background:#061829;

color:white;

}

.diferenciais h2{

text-align:center;

font-size:42px;

margin-bottom:60px;

}

.diferenciais-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.item{

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

padding:40px;

border-radius:18px;

text-align:center;

transition:.4s;

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

}

.item:hover{

transform:translateY(-10px);

background:#0b2b4a;

}

.item i{

font-size:50px;

color:#00b4ff;

margin-bottom:20px;

}

.item h3{

font-size:24px;

margin-bottom:15px;

}

.item p{

line-height:28px;

color:#ddd;

}

/*============================
CONTADORES
============================*/

.numeros{

padding:90px 0;

background:white;

}

.numeros .container{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:30px;

}

.contador{

background:#FFF;

padding:45px;

text-align:center;

border-radius:20px;

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

transition:.4s;

}

.contador:hover{

transform:translateY(-10px);

}

.numero{

font-size:60px;

font-weight:700;

color:#0077ff;

margin-bottom:10px;

}

.contador p{

font-size:20px;

color:#555;

}

/*==========================================
GALERIA PREMIUM
==========================================*/

.galeria img{

    border:4px solid white;

    transition:.5s;

}

.galeria img:hover{

    transform:scale(1.08);

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}

.servico{

    overflow:hidden;

}

.servico::before{

    content:"";

    display:block;

    width:80px;

    height:5px;

    background:#0077ff;

    border-radius:50px;

    margin-bottom:20px;

}

/*==========================================
LIGHTBOX
==========================================*/

#lightbox{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

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

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

    cursor:pointer;

}

#lightbox img{

    max-width:90%;

    max-height:90%;

    border-radius:15px;

    box-shadow:0 25px 60px rgba(0,0,0,.5);

    animation:zoom .35s;

}

@keyframes zoom{

    from{

        transform:scale(.8);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

/*==================================
BARRA DE ESTATÍSTICAS
==================================*/

.stats{

    padding:80px 0 30px;

    position:relative;

    z-index:10;

    background:#f5f7fa;

}

.stats .container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    align-items:center;

}

.stat-card{

    background:#ffffff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    transition:.4s;

}

.stat-card:hover{

    transform:translateY(-10px);

}

.stat-card i{

    font-size:45px;

    color:#0077ff;

    margin-bottom:20px;

}

.stat-card h3{

    font-size:42px;

    color:#0B2B4A;

    margin-bottom:10px;

}

.stat-card p{

    color:#666;

    font-size:17px;

}

/*==================================
QUEM SOMOS PREMIUM
==================================*/

.empresa{

    padding:100px 0;

}

.empresa-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.titulo-pequeno{

    color:#0077ff;

    font-weight:700;

    letter-spacing:2px;

}

.empresa h2{

    font-size:48px;

    color:#0B2B4A;

    margin:20px 0;

}

.empresa p{

    line-height:34px;

    color:#555;

    margin-bottom:25px;

    font-size:18px;

}

.empresa-btn{

    display:inline-block;

    margin-top:15px;

    background:#25D366;

    color:white;

    padding:16px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.empresa-btn:hover{

    transform:translateY(-4px);

}

.empresa-imagem img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

@media(max-width:900px){

    .empresa-grid{

        grid-template-columns:1fr;

    }

}

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

.hero{

    position:relative;

    overflow:hidden;

}

.hero-tag{

    display:inline-block;

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

    color:#FFF;

    padding:12px 25px;

    border-radius:40px;

    margin-bottom:30px;

    letter-spacing:2px;

    font-size:14px;

    backdrop-filter:blur(10px);

}

.hero-texto h1{

    font-size:82px;

    line-height:90px;

    margin-bottom:30px;

}

.hero-texto span{

    color:#00B4FF;

}

.hero-texto p{

    max-width:900px;

    margin:auto;

    font-size:24px;

    line-height:42px;

    margin-bottom:45px;

}

.hero-botoes{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-principal{

    background:#25D366;

    color:white;

    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    font-weight:bold;

    transition:.35s;

}

.btn-principal:hover{

    transform:translateY(-4px);

    background:#1BA851;

}

.btn-secundario{

    background:transparent;

    border:2px solid white;

    color:white;

    padding:18px 40px;

    border-radius:50px;

    text-decoration:none;

    transition:.35s;

}

.btn-secundario:hover{

    background:white;

    color:#0B2B4A;

}

.scroll-down{

    margin-top:60px;

    font-size:35px;

    color:white;

    animation:seta 2s infinite;

}

@keyframes seta{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=========================
EMPRESA DESENVOLVEDORA
=========================*/

.desenvolvedora{

    margin-top:50px;

    text-align:center;

}

.desenvolvedora h3{

    color:white;

    margin-bottom:20px;

    font-size:22px;

}

.desenvolvedora img{

    width:180px;

    border-radius:15px;

    transition:.4s;

    cursor:pointer;

}

.desenvolvedora img:hover{

    transform:scale(1.08);

}

/*=====================================================
SERVIÇOS EM ANDAMENTO
=====================================================*/

.obras{

    padding:100px 0;

    background:#eef3f8;

}

.titulo-obras{

    text-align:center;

    margin-bottom:60px;

}

.titulo-obras span{

    color:#0077ff;

    font-weight:bold;

    letter-spacing:2px;

}

.titulo-obras h2{

    font-size:42px;

    color:#0B2B4A;

    margin:15px 0;

}

.titulo-obras p{

    color:#666;

    font-size:18px;

}

.cards-obras{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.card-obra{

    background:white;

    border-radius:20px;

    overflow:hidden;

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

    transition:.35s;

}

.card-obra:hover{

    transform:translateY(-10px);

}

.card-obra img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.card-obra .conteudo{

    padding:25px;

}

.card-obra h3{

    color:#0B2B4A;

    margin-bottom:15px;

}

.card-obra p{

    color:#555;

    line-height:28px;

}

.status{

    display:inline-block;

    background:#25D366;

    color:white;

    padding:8px 18px;

    border-radius:30px;

    margin-top:20px;

    font-size:14px;

    font-weight:bold;

}

/*=====================================================
OBRAS EM ANDAMENTO PREMIUM
=====================================================*/

.cards-obras{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.card-obra{

    background:#FFF;

    border-radius:20px;

    overflow:hidden;

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

    transition:.35s;

}

.card-obra:hover{

    transform:translateY(-10px);

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

}

.card-obra img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.5s;

}

.card-obra:hover img{

    transform:scale(1.08);

}

.card-obra .conteudo{

    padding:25px;

}

.card-obra h3{

    color:#0B2B4A;

    margin-bottom:15px;

    font-size:28px;

}

.card-obra p{

    color:#555;

    line-height:28px;

    margin-bottom:15px;

}

.cidade{

    font-weight:600;

    color:#0B2B4A;

}

.barra{

    width:100%;

    height:12px;

    background:#e4e4e4;

    border-radius:30px;

    overflow:hidden;

    margin-top:20px;

}

.progresso{

    height:100%;

    background:linear-gradient(90deg,#0077ff,#00b4ff);

    border-radius:30px;

    transition:1s;

}

.porcentagem{

    display:block;

    margin-top:10px;

    color:#0077ff;

    font-weight:bold;

}

.status{

    display:inline-block;

    margin-top:20px;

    padding:8px 18px;

    border-radius:30px;

    background:#25D366;

    color:white;

    font-size:14px;

    font-weight:bold;

}

.btn-detalhes{

    width:100%;

    margin-top:25px;

    border:none;

    background:#0B2B4A;

    color:white;

    padding:16px;

    border-radius:12px;

    cursor:pointer;

    font-size:17px;

    font-weight:bold;

    transition:.3s;

}

.btn-detalhes:hover{

    background:#0077ff;

}

@media(max-width:768px){

    .cards-obras{

        grid-template-columns:1fr;

    }

}

/*==================================
MODAL DAS OBRAS
==================================*/

.modal{

    display:none;

    position:fixed;

    inset:0;

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

    z-index:99999;

    justify-content:center;

    align-items:center;

}

.modal-box{

    background:white;

    width:90%;

    max-width:700px;

    border-radius:20px;

    overflow:hidden;

    position:relative;

    animation:modal .3s;

}

.modal-box img{

    width:100%;

    height:350px;

    object-fit:cover;

}

.modal-box h2{

    padding:25px 25px 10px;

    color:#0B2B4A;

}

.modal-box p{

    padding:0 25px;

    line-height:30px;

    color:#555;

}

.modal-box .barra{

    margin:25px;

}

.modal-box .status{

    margin:0 25px 25px;

}

.fechar-modal{

    position:absolute;

    top:15px;

    right:20px;

    color:white;

    font-size:38px;

    cursor:pointer;

    font-weight:bold;

}

@keyframes modal{

    from{

        transform:scale(.9);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

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

footer{

    background:#081827;

    color:#fff;

    padding:70px 20px;

}

.footer-container{

    max-width:1100px;

    margin:auto;

    text-align:center;

}

footer h2{

    font-size:34px;

    margin-bottom:35px;

    font-weight:700;

    letter-spacing:1px;

}

.footer-info{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    margin-bottom:30px;

}

.footer-info p{

    display:flex;

    align-items:center;

    gap:10px;

    color:#ddd;

    font-size:17px;

}

.footer-info i{

    color:#17c4ff;

    font-size:18px;

}

.footer-divisor{

    width:90px;

    height:4px;

    background:#17c4ff;

    border-radius:50px;

    margin:35px auto;

}

.copyright{

    color:#bdbdbd;

    line-height:30px;

    margin-bottom:40px;

}

.desenvolvedora{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:15px;

}

.desenvolvedora span{

    color:#fff;

    font-size:17px;

    font-weight:600;

}

.desenvolvedora img{

    width:140px;

    transition:.35s;

    opacity:.9;

}

.desenvolvedora img:hover{

    transform:scale(1.08);

    opacity:1;

}