/*=========================================
    LAMINART v3.0
==========================================*/

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

html{
    scroll-behavior:smooth;
}

body{

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

    background:#f5f5f5;

    color:#333;

    overflow-x:hidden;

}

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

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

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

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:rgba(17,17,17,.95);

    backdrop-filter:blur(10px);

    z-index:999;

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

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    height:70px;

}

.menu{

    display:flex;

    align-items:center;

}

.menu a{

    color:white;

    text-decoration:none;

    margin-left:35px;

    font-size:17px;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.menu a:hover{

    .menu a.active{

    color:#22c55e;

}

.menu a.active::after{

    width:100%;

}

    color:#25D366;

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#25D366;

    transition:.3s;

}

.menu a:hover::after{

    width:100%;

}

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

.hero{

    position:relative;

    height:100vh;

    min-height:650px;

    overflow:hidden;

}

.hero img{

    width:100%;

    height:100%;

    object-fit:cover;

    filter:brightness(.45);

}

.hero-text{

    position:absolute;

    top:50%;

    left:10%;

    transform:translateY(-50%);

    color:white;

    max-width:650px;

}

.hero-text h1{

    font-size:64px;

    line-height:1.1;

    margin-bottom:20px;

}

.hero-text p{

    font-size:23px;

    line-height:1.7;

    margin-bottom:35px;

}

.hero-btn{

    display:inline-block;

    background:#25D366;

    color:white;

    text-decoration:none;

    padding:18px 38px;

    border-radius:60px;

    font-size:18px;

    font-weight:bold;

    transition:.3s;

}

.hero-btn:hover{

    transform:translateY(-4px);

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

}

/*==========================
SECCIONES
==========================*/

.section{

    padding:100px 0;

}

.section h2{

    text-align:center;

    font-size:42px;

    color:#222;

    margin-bottom:20px;

}

.section p{

    text-align:center;

    color:#666;

    font-size:18px;

    line-height:1.8;

}

/*==========================
PRODUCTOS
==========================*/

.productos{

    display:grid;

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

    gap:35px;

    margin-top:60px;

}

.producto{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

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

    transition:.35s;

}

.producto:hover{

    transform:translateY(-10px);

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

}

.producto img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.4s;

}

.producto:hover img{

    transform:scale(1.05);

}

.producto h3{

    font-size:26px;

    margin:22px 20px 10px;

    text-align:center;

    color:#222;

}

.producto p{

    padding:0 20px 30px;

    font-size:17px;

    text-align:center;

    color:#666;

}

/*==========================
GALERÍA
==========================*/

.galeria{

    display:grid;

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

    gap:25px;

    margin-top:50px;

}

.galeria img{

    width:100%;

    height:320px;

    object-fit:cover;

    border-radius:18px;

    cursor:pointer;

    transition:all .45s ease;

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

    border:6px solid #fff;

}

.galeria img:hover{

    transform:translateY(-8px) scale(1.03);

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

}

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

.lightbox{

    display:none;

    position:fixed;

    inset:0;

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

    backdrop-filter:blur(6px);

    justify-content:center;

    align-items:center;

    z-index:99999;

    animation:fadeLightbox .3s ease;

}

@keyframes fadeLightbox{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

.lightbox img{

    max-width:88%;

    max-height:85%;

    border-radius:14px;

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

    animation:zoomImagen .35s ease;

}

@keyframes zoomImagen{

    from{

        transform:scale(.8);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

/*==========================
BOTÓN CERRAR
==========================*/

.cerrar{

    position:absolute;

    top:25px;

    right:35px;

    font-size:52px;

    color:#fff;

    cursor:pointer;

    transition:.3s;

    user-select:none;

}

.cerrar:hover{

    color:#25D366;

    transform:scale(1.15);

}

/*==========================
FLECHAS
==========================*/

.anterior,
.siguiente{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    font-size:65px;

    color:#fff;

    cursor:pointer;

    user-select:none;

    padding:20px;

    transition:.3s;

}

.anterior{

    left:20px;

}

.siguiente{

    right:20px;

}

.anterior:hover,
.siguiente:hover{

    color:#25D366;

    transform:translateY(-50%) scale(1.15);

}

/*==========================
CONTADOR
==========================*/

.contador{

    position:absolute;

    top:28px;

    left:50%;

    transform:translateX(-50%);

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

    color:#fff;

    padding:10px 20px;

    border-radius:40px;

    font-size:18px;

    font-weight:bold;

    backdrop-filter:blur(8px);

}

/*==========================
BOTÓN WHATSAPP
==========================*/

.floating-contact{

    position:fixed;

    right:30px;

    bottom:30px;

    z-index:9999;
    
padding:16px 24px;
font-size:17px;

}

.contact-item{

    display:flex;

    align-items:center;

    gap:12px;

    background:#25D366;

    color:#fff;

    text-decoration:none;

    padding:14px 20px;

    border-radius:60px;

    font-weight:bold;

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

    transition:.3s;

}

.contact-item img{

    width:28px;

    height:28px;

}

.contact-item:hover{

    transform:translateY(-4px);

    background:#1ebe5d;

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

}

/*==========================
ANIMACIÓN WHATSAPP
==========================*/

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.05);

    }

    100%{

        transform:scale(1);

    }

}

.contact-item{

    animation:pulse 2.5s infinite;

}

/*==========================
CONTACTO
==========================*/

#contacto{

    background:#fff;

}

#contacto p{

    margin:10px 0;

    font-size:18px;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:992px){

    .hero-text h1{

        font-size:48px;

    }

    .hero-text p{

        font-size:20px;

    }

}

@media(max-width:768px){

    header .container{

        flex-direction:column;

        justify-content:center;

        height:auto;

        padding:15px 0;

    }

    .menu{

        margin-top:15px;

        flex-wrap:wrap;

        justify-content:center;

    }

    .menu a{

        margin:8px 12px;

    }

    .hero{

        height:80vh;

    }

    .hero-text{

        left:6%;

        right:6%;

        max-width:100%;

    }

    .hero-text h1{

        font-size:38px;

    }

    .hero-text p{

        font-size:18px;

    }

    .hero-btn{

        padding:15px 28px;

        font-size:16px;

    }

    .productos{

        grid-template-columns:1fr;

    }

    .galeria{

        grid-template-columns:1fr;

    }

}

/*==========================
ANIMACIONES GENERALES
==========================*/

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.hero-text{

    animation:fadeUp .9s ease;

}

.producto{

    animation:fadeUp .8s ease;

}

/*==========================
MEJORAS PRODUCTOS
==========================*/

.producto{

    border:1px solid rgba(0,0,0,.05);

}

.producto h3{

    transition:.3s;

}

.producto:hover h3{

    color:#25D366;

}

/*==========================
MEJORAS GALERÍA
==========================*/

.galeria img{

    border:4px solid white;

}

.galeria img:hover{

    border-color:#25D366;

}

/*==========================
SCROLLBAR
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:#25D366;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#18b458;

}

/*==========================
SEPARACIÓN ENTRE SECCIONES
==========================*/

section{

    position:relative;

}

section::after{

    content:"";

    display:block;

    width:120px;

    height:3px;

    background:#25D366;

    margin:70px auto 0;

    border-radius:10px;

}

section:last-of-type::after{

    display:none;

}

/*==========================
EFECTOS GENERALES
==========================*/

img{

    user-select:none;

    -webkit-user-drag:none;

}

a{

    transition:.3s;

}

button{

    transition:.3s;

}

/*==========================
TÍTULOS
==========================*/

h1,
h2,
h3{

    letter-spacing:.5px;

}

.section h2{

    position:relative;

    display:inline-block;

    left:50%;

    transform:translateX(-50%);

    padding-bottom:15px;

}

.section h2::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    transform:translateX(-50%);

    width:70px;

    height:4px;

    background:#25D366;

    border-radius:20px;

}

/*==========================
SOMBRAS SUAVES
==========================*/

.hero img{

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

}

.producto{

    overflow:hidden;

}

.producto img{

    display:block;

}

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

@media(max-width:768px){

    .lightbox img{

        max-width:95%;

        max-height:70%;

    }

    .anterior,
    .siguiente{

        font-size:45px;

        padding:10px;

    }

    .contador{

        font-size:15px;

        padding:8px 14px;

    }

    .cerrar{

        font-size:40px;

        right:20px;

    }

}

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

.menu a:hover{

    opacity:.9;

}

.hero-btn:hover{

    background:#1ebe5d;

}

.contact-item:hover{

    background:#1ebe5d;

}

/*==========================
EFECTOS FINALES
==========================*/

::selection{

    background:#25D366;

    color:#fff;

}

.logo img{

    transition:.35s;

}

.logo img:hover{

    transform:scale(1.05);

}

.hero-btn{

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

}

.hero-btn:active{

    transform:scale(.98);

}

.contact-item:active{

    transform:scale(.98);

}

/*==========================
FOCUS
==========================*/

a:focus{

    outline:none;

}

/*==========================
TRANSICIONES
==========================*/

.producto,
.galeria img,
.hero-btn,
.contact-item,
.menu a,
.logo img{

    transition:all .35s ease;

}

/*==========================
MEJORA RESPONSIVE EXTRA
==========================*/

@media(max-width:480px){

    .hero{

        min-height:520px;

    }

    .hero-text{

        top:52%;

    }

    .hero-text h1{

        font-size:30px;

        line-height:1.2;

    }

    .hero-text p{

        font-size:16px;

    }

    .section{

        padding:70px 0;

    }

    .section h2{

        font-size:30px;

    }

}

/*=========================================
    FOOTER (PREPARADO PARA FUTURAS VERSIONES)
==========================================*/

footer{

    background:#111;

    color:#fff;

    text-align:center;

    padding:40px 20px;

}

footer p{

    color:#bbb;

    font-size:15px;

    line-height:1.8;

}

footer a{

    color:#25D366;

    text-decoration:none;

}

footer a:hover{

    text-decoration:underline;

}

/*=========================================
    UTILIDADES
==========================================*/

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-40{

    margin-top:40px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

.oculto{

    display:none;

}

/*====================================
BENEFICIOS
====================================*/

.beneficios{
    padding:90px 0;
    background:#fff;
}

.beneficios .container{
    display:block;
    max-width:1200px;
    margin:auto;
}

.beneficios h2{
    text-align:center;
    font-size:48px;
    margin-bottom:60px;
    color:#222;
}

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

.beneficio{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
    transition:.35s;
}

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

.icono{
    font-size:55px;
    margin-bottom:18px;
}

.beneficio h3{
    font-size:26px;
    margin-bottom:15px;
    color:#222;
}

.beneficio p{
    color:#666;
    line-height:1.7;
}

@media(max-width:900px){

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

}

@media(max-width:600px){

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

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

.hero-text{

    max-width:650px;

}

.hero-badge{

    display:inline-block;

    background:#22c55e;

    color:white;

    padding:10px 20px;

    border-radius:50px;

    font-size:15px;

    font-weight:bold;

    margin-bottom:25px;

}

.hero h1{

    font-size:68px;

    color:white;

    line-height:1.1;

    margin-bottom:25px;

    text-shadow:0 8px 30px rgba(0,0,0,.35);

}

.hero p{

    font-size:24px;

    color:white;

    line-height:1.8;

    margin-bottom:35px;

    text-shadow:0 4px 20px rgba(0,0,0,.35);

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-btn{

    background:#22c55e;

    color:white;

    padding:18px 35px;

    border-radius:60px;

    text-decoration:none;

    font-weight:bold;

    font-size:18px;

    transition:.3s;

}

.hero-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(34,197,94,.45);

}

.hero-btn-secundario{

    background:white;

    color:#222;

    padding:18px 35px;

    border-radius:60px;

    text-decoration:none;

    font-weight:bold;

    font-size:18px;

    transition:.3s;

}

.hero-btn-secundario:hover{

    background:#f1f1f1;

}
/*==============================
PROYECTO REAL
==============================*/

.galeria{

    position:relative;

}

.galeria img{

    position:relative;

}
/*==================================
ESTADÍSTICAS
==================================*/

.estadisticas{

    background:#151515;

    padding:80px 0;

}

.estadisticas .container{

    display:grid;

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

    gap:40px;

    text-align:center;

}

.estadistica h2{

    font-size:60px;

    color:#22c55e;

    margin-bottom:12px;

    font-weight:700;

}

.estadistica p{

    color:#ffffff;

    font-size:20px;

    line-height:1.5;

}

@media(max-width:900px){

.estadisticas .container{

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

}

}

@media(max-width:600px){

.estadisticas .container{

grid-template-columns:1fr;

}

}
/*=====================================
TESTIMONIOS
======================================*/

.testimonios{

    background:#f7f7f7;

    padding:100px 0;

}

.testimonios h2{

    text-align:center;

    margin-bottom:60px;

}

.testimonios-grid{

    display:grid;

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

    gap:30px;

}

.testimonio{

    background:white;

    padding:35px;

    border-radius:18px;

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

    transition:.35s;

}

.testimonio:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 45px rgba(0,0,0,.18);

}

.estrellas{

    color:#f5b301;

    font-size:28px;

    margin-bottom:20px;

}

.testimonio p{

    font-size:18px;

    line-height:1.8;

    color:#555;

    margin-bottom:25px;

}

.testimonio h4{

    color:#22c55e;

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

.footer{

    background:#111;

    color:#fff;

    padding:70px 0 20px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:200px;

    margin-bottom:20px;

}

.footer h3{

    margin-bottom:20px;

    color:#22c55e;

}

.footer p{

    color:#cfcfcf;

    line-height:1.8;

}

.footer a{

    display:block;

    color:#cfcfcf;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;

}

.footer a:hover{

    color:#22c55e;

}

.copyright{

    text-align:center;

    margin-top:50px;

    padding-top:20px;

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

    color:#888;

}

@media(max-width:900px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-logo{

margin:auto;

display:block;

margin-bottom:25px;

border-top:4px solid #22c55e;

}

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

.cta{

    background:linear-gradient(135deg,#111,#222);

    color:white;

    padding:100px 20px;

    text-align:center;

}

.cta h2{

    font-size:52px;

    margin-bottom:25px;

}

.cta p{

    max-width:800px;

    margin:auto;

    font-size:22px;

    line-height:1.8;

    color:#ddd;

    margin-bottom:45px;

}

.cta-btn{

    display:inline-block;

    background:#22c55e;

    color:white;

    padding:22px 45px;

    border-radius:60px;

    font-size:22px;

    font-weight:bold;

    text-decoration:none;

    transition:.35s;

    box-shadow:0 20px 40px rgba(34,197,94,.35);

}

.cta-btn:hover{

    transform:translateY(-5px);

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

}
/*=====================================
ANIMACIONES SCROLL
=====================================*/

.animar{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.animar.visible{

    opacity:1;

    transform:translateY(0);

}

/*=====================================
CONTACTO FINAL
=====================================*/

.contacto-final{

    width:100%;

    padding:140px 20px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:#fff;

}

.contacto-final .container{

    width:100%;

    max-width:900px;

    margin:0 auto;

}

.contacto-final h2{
    font-size:58px;
    margin:0 auto 25px;
    text-align:center;
    width:100%;
}

.contacto-texto{

    font-size:24px;

    color:#555;

    line-height:1.8;

    margin-bottom:45px;

}

.contacto-btn{

    display:inline-block;

    background:#22c55e;

    color:#fff;

    padding:22px 45px;

    border-radius:60px;

    text-decoration:none;

    font-size:22px;

    font-weight:bold;

    transition:.3s;

    box-shadow:0 15px 35px rgba(34,197,94,.35);

}

.contacto-btn:hover{

    transform:translateY(-5px);

}
/* ===== FORMULARIO DE COTIZACIÓN ===== */

.modal{
display:none;
position:fixed;
z-index:9999;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.65);
justify-content:center;
align-items:center;
}

.modal-content{
background:#fff;
padding:35px;
border-radius:15px;
width:90%;
max-width:550px;
max-height:90vh;
overflow:auto;
box-shadow:0 10px 40px rgba(0,0,0,.3);
animation:aparecer .3s;
}

@keyframes aparecer{
from{
transform:translateY(-30px);
opacity:0;
}
to{
transform:translateY(0);
opacity:1;
}
}

.modal-content h2{
text-align:center;
margin-bottom:25px;
}

.modal-content label{
display:block;
margin-top:15px;
font-weight:600;
}

.modal-content input,
.modal-content select,
.modal-content textarea{
width:100%;
padding:12px;
margin-top:6px;
border:1px solid #ddd;
border-radius:8px;
font-size:15px;
box-sizing:border-box;
}

.modal-content textarea{
resize:vertical;
}

.modal-content button{
margin-top:20px;
width:100%;
padding:14px;
border:none;
border-radius:8px;
background:#16c15f;
color:white;
font-size:18px;
cursor:pointer;
font-weight:bold;
transition:.3s;
}

.modal-content button:hover{
background:#11a64f;
}

.cerrar{
float:right;
font-size:32px;
cursor:pointer;
font-weight:bold;
}