
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}
html{
    scroll-behavior:smooth;
}
body{
    background:#f5f5f7;
}

@keyframes fadeInUp{
    from{ opacity:0; transform:translateY(30px); }
    to{ opacity:1; transform:translateY(0); }
}
@keyframes fadeIn{
    from{ opacity:0; }
    to{ opacity:1; }
}
@keyframes zoomFade{
    from{ opacity:0; transform:scale(.92); }
    to{ opacity:1; transform:scale(1); }
}
@keyframes floatUpDown{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-8px); }
}

@keyframes marquee{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}
@keyframes pulseDot{
    0%,100%{ opacity:1; transform:scale(1); }
    50%{ opacity:.4; transform:scale(.8); }
}
@keyframes bounceIn{
    0%{ opacity:0; transform:scale(.7) translateY(20px); }
    60%{ opacity:1; transform:scale(1.03) translateY(-4px); }
    100%{ opacity:1; transform:scale(1) translateY(0); }
}

@media (prefers-reduced-motion: reduce){
    *{
        animation:none !important;
        transition:none !important;
        scroll-behavior:auto !important;
    }
}

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible{
    opacity:1;
    transform:translateY(0);
}

.topbar{
    background:linear-gradient(90deg, #0a0a0a, #111114, #0a0a0a);
    color:#cfd3d8;
    text-align:center;
    font-size:13px;
    letter-spacing:.2px;
    padding:9px 10px;
}
.topbar strong{
    color:#2997ff;
}
.topbar .separador{
    margin:0 14px;
    color:#3a3a3d;
}
@media (max-width:700px){
    .topbar .separador:nth-of-type(2){ display:none; }
    .topbar span:nth-of-type(3){ display:none; }
}

header{
    background:#000;
    padding:15px 8%;
    position:sticky;
    top:0;
    z-index:100;
    animation:fadeIn .6s ease;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav h1{
    color:#fff;
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    position:relative;
    text-decoration:none;
    color:#fff;
    font-size:17px;
    transition:color .25s ease;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0%;
    height:2px;
    background:#2997ff;
    transition:width .3s ease;
}

nav ul li a:hover{
    color:#2997ff;
}

nav ul li a:hover::after{
    width:100%;
}

.banner{
    height:80vh;
    background-image:url("../imagenes/banner.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}
.contenido-banner{
    background:rgba(0,0,0,.55);
    padding:40px;
    border-radius:15px;
    animation:fadeInUp .9s ease both;
}
.contenido-banner h2{
    color:#fff;
    font-size:55px;
}
.contenido-banner p{
    color:#ddd;
    margin:15px 0;
    font-size:20px;
}
.banner-chips{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin-top:22px;
}
.banner-chips span{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
    font-size:14px;
    padding:8px 16px;
    border-radius:30px;
    backdrop-filter:blur(4px);
}

.btn{
    display:inline-block;
    background:#2997ff;
    color:#fff;
    text-decoration:none;
    padding:12px 25px;
    border-radius:30px;
    transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover{
    background:#1c7ed6;
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(41,151,255,.4);
}
.btn:active{
    transform:translateY(0);
}

.video-seccion{
    text-align:center;
    padding:70px 20px;
    background:#f5f5f5;
}
.video-seccion h2{
    font-size:34px;
    margin-bottom:10px;
}
.video-seccion p{
    color:#555;
    margin-bottom:25px;
}
.video-contenedor{
    animation:zoomFade .8s ease both;
}
.video-contenedor video{
    width:900px;
    max-width:100%;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.banner-promo{
    position:relative;
    background:#0a0a0a;
    overflow:hidden;
    margin:70px auto;
    width:90%;
    max-width:1200px;
    border-radius:26px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:55px 60px;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
}
.banner-promo::before{
    content:"";
    position:absolute;
    top:-100px;
    right:-100px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(41,151,255,.22) 0%, rgba(41,151,255,0) 70%);
    pointer-events:none;
}
.banner-promo.invertido{
    flex-direction:row-reverse;
    background:linear-gradient(135deg,#101014,#050506);
}
.banner-promo.invertido::before{
    left:-100px;
    right:auto;
    background:radial-gradient(circle, rgba(111,195,255,.18) 0%, rgba(111,195,255,0) 70%);
}
.banner-promo-texto{
    position:relative;
    max-width:480px;
}
.banner-promo-etiqueta{
    display:inline-block;
    background:linear-gradient(90deg,#2997ff,#6fc3ff);
    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    padding:6px 16px;
    border-radius:20px;
    margin-bottom:18px;
}
.banner-promo-texto h2{
    color:#fff;
    font-size:36px;
    line-height:1.25;
    margin-bottom:14px;
}
.banner-promo-texto p{
    color:#a7a7ad;
    font-size:16px;
    line-height:1.6;
    margin-bottom:26px;
}
.banner-promo-precio{
    display:flex;
    align-items:baseline;
    gap:12px;
    margin-bottom:24px;
}
.banner-promo-precio .antes{
    color:#6b6b70;
    text-decoration:line-through;
    font-size:16px;
}
.banner-promo-precio .ahora{
    color:#2997ff;
    font-size:28px;
    font-weight:700;
}
.banner-promo-imagen{
    position:relative;
    flex-shrink:0;
    width:300px;
    height:300px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.banner-promo-imagen::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(41,151,255,.35) 0%, rgba(41,151,255,0) 72%);
    z-index:0;
}
.banner-promo-imagen img{
    position:relative;
    z-index:1;
    width:260px;
    height:260px;
    object-fit:contain;
    border-radius:24px;
    background:#fff;
    padding:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.4);
    animation:floatUpDown 4s ease-in-out infinite;
}
@media (max-width:820px){
    .banner-promo, .banner-promo.invertido{
        flex-direction:column;
        text-align:center;
        padding:45px 30px;
    }
    .banner-promo-texto{
        max-width:100%;
    }
    .banner-promo-precio{
        justify-content:center;
    }
}

.titulo{
    text-align:center;
    padding:60px 20px 20px;
    animation:fadeInUp .7s ease both;
}
.titulo h2{
    font-size:42px;
    color:#111;
    margin-bottom:10px;
}
.titulo p{
    color:#666;
    font-size:18px;
}

.beneficios{
    width:90%;
    margin:70px auto;
    text-align:center;
}
.beneficios h2{
    font-size:40px;
    margin-bottom:40px;
}
.beneficios-contenedor{
    list-style:none;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}
.beneficio{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:transform .3s ease, box-shadow .3s ease;
    animation:fadeInUp .6s ease both;
}
.beneficio:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}
.beneficio h3{
    color:#2997ff;
    margin-bottom:15px;
    font-size:26px;
}
.beneficio p{
    color:#666;
    line-height:1.6;
}

.estadisticas{
    width:90%;
    max-width:1100px;
    margin:20px auto 80px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    text-align:center;
}
.estadistica{
    background:#fff;
    border-radius:18px;
    padding:30px 15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}
.estadistica .numero{
    display:block;
    font-size:40px;
    font-weight:800;
    color:#2997ff;
    margin-bottom:6px;
}
.estadistica .etiqueta{
    color:#666;
    font-size:15px;
}

.servicios{
    position:relative;
    background:#0a0a0a;
    padding:80px 8% 90px;
    overflow:hidden;
}
.servicios::before{
    content:"";
    position:absolute;
    top:-120px;
    left:50%;
    width:600px;
    height:600px;
    transform:translateX(-50%);
    background:radial-gradient(circle, rgba(41,151,255,.12) 0%, rgba(41,151,255,0) 70%);
    pointer-events:none;
}
.servicios h2{
    position:relative;
    color:#fff;
    text-align:center;
    font-size:40px;
    margin-bottom:12px;
}
.servicios > p.servicios-subtitulo{
    position:relative;
    text-align:center;
    color:#8a8a8f;
    font-size:17px;
    margin-bottom:50px;
}
.servicios-contenedor{
    position:relative;
    list-style:none;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}
.servicio{
    position:relative;
    background:linear-gradient(180deg, #1c1c1e 0%, #161618 100%);
    border-radius:18px;
    padding:38px 30px;
    text-align:center;
    border:1px solid #2a2a2d;
    transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    animation:fadeInUp .6s ease both;
    overflow:hidden;
}
.servicio::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:3px;
    background:linear-gradient(90deg, #2997ff, #6fc3ff);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .35s ease;
}
.servicio:hover{
    transform:translateY(-10px);
    border-color:rgba(41,151,255,.5);
    box-shadow:0 20px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(41,151,255,.15);
}
.servicio:hover::after{
    transform:scaleX(1);
}
.servicio-icono{
    display:flex;
    align-items:center;
    justify-content:center;
    width:64px;
    height:64px;
    margin:0 auto 20px;
    border-radius:50%;
    font-size:28px;
    background:radial-gradient(circle at 30% 30%, #26364a, #131417);
    border:1px solid #333a45;
    transition:transform .35s ease, background .35s ease;
}
.servicio:hover .servicio-icono{
    transform:scale(1.1) rotate(-6deg);
    background:radial-gradient(circle at 30% 30%, #2997ff, #14395e);
}
.servicio h3{
    color:#fff;
    font-size:21px;
    font-weight:600;
    margin-bottom:12px;
    letter-spacing:.2px;
}
.servicio p{
    color:#a7a7ad;
    line-height:1.6;
    font-size:15px;
}

.catalogo-hero{
    position:relative;
    background:#0a0a0a;
    text-align:center;
    padding:80px 20px 60px;
    overflow:hidden;
}
.catalogo-hero::before{
    content:"";
    position:absolute;
    top:-140px;
    left:50%;
    width:640px;
    height:640px;
    transform:translateX(-50%);
    background:radial-gradient(circle, rgba(41,151,255,.16) 0%, rgba(41,151,255,0) 70%);
    pointer-events:none;
}
.catalogo-hero h2{
    position:relative;
    color:#fff;
    font-size:42px;
    margin-bottom:12px;
}
.catalogo-hero p{
    position:relative;
    color:#a7a7ad;
    font-size:18px;
    margin-bottom:30px;
}
.catalogo-chips{
    position:relative;
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}
.catalogo-chips a{
    display:inline-block;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    padding:11px 24px;
    border-radius:30px;
    border:1px solid #333a45;
    background:rgba(255,255,255,.04);
    transition:background .25s ease, border-color .25s ease, transform .25s ease;
}
.catalogo-chips a:hover{
    background:#2997ff;
    border-color:#2997ff;
    transform:translateY(-3px);
}

.productos-grupo{
    width:90%;
    max-width:1200px;
    margin:60px auto 0;
    scroll-margin-top:90px;
}
.grupo-titulo{
    display:inline-block;
    font-size:28px;
    color:#111;
    margin-bottom:30px;
    padding-bottom:10px;
    border-bottom:3px solid #2997ff;
}

.productos{
    width:90%;
    max-width:1200px;
    margin:40px auto 0;
    padding:0 0 60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}
.card{
    position:relative;
    background:#fff;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.10);
    overflow:hidden;
    transition:transform .3s ease, box-shadow .3s ease;
    animation:fadeInUp .6s ease both;
}
.card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.18);
}
.card-badge{
    position:absolute;
    top:14px;
    left:14px;
    z-index:2;
    font-size:12px;
    font-weight:700;
    letter-spacing:.4px;
    text-transform:uppercase;
    color:#fff;
    padding:6px 14px;
    border-radius:20px;
    box-shadow:0 4px 10px rgba(0,0,0,.2);
}
.badge-nuevo{
    background:linear-gradient(90deg, #2997ff, #6fc3ff);
}
.badge-pro{
    background:linear-gradient(90deg, #3a3a3c, #17171a);
    border:1px solid #555;
}
.card img{
    width:100%;
    height:260px;
    object-fit:contain;
    padding:20px;
    background:#fff;
    border-bottom:1px solid #eee;
    transition:transform .4s ease;
}
.card:hover img{
    transform:scale(1.06);
}
.card h3{
    margin-top:18px;
    font-size:25px;
    color:#111;
}
.card p{
    color:#666;
    padding:10px 18px;
    min-height:50px;
}
.card .precio{
    display:block;
    color:#0071e3;
    font-size:26px;
    font-weight:bold;
    margin:15px 0;
}
.card .btn{
    margin-bottom:25px;
}
.card button{
    background:#0071e3;
    color:#fff;
    border:none;
    border-radius:25px;
    padding:12px 28px;
    margin-bottom:25px;
    font-size:16px;
    cursor:pointer;
    transition:background .2s ease, transform .2s ease;
}
.card button:hover{
    background:#005bb5;
    transform:translateY(-2px);
}
.card button:active{
    background:#005bb5;
    transform:translateY(0);
}

.productos .card:nth-child(1){ animation-delay:.05s; }
.productos .card:nth-child(2){ animation-delay:.1s; }
.productos .card:nth-child(3){ animation-delay:.15s; }
.productos .card:nth-child(4){ animation-delay:.2s; }
.productos .card:nth-child(5){ animation-delay:.25s; }
.productos .card:nth-child(6){ animation-delay:.3s; }

.servicios-contenedor .servicio:nth-child(1){ animation-delay:.05s; }
.servicios-contenedor .servicio:nth-child(2){ animation-delay:.1s; }
.servicios-contenedor .servicio:nth-child(3){ animation-delay:.15s; }
.servicios-contenedor .servicio:nth-child(4){ animation-delay:.2s; }
.servicios-contenedor .servicio:nth-child(5){ animation-delay:.25s; }
.servicios-contenedor .servicio:nth-child(6){ animation-delay:.3s; }
.servicios-contenedor .servicio:nth-child(7){ animation-delay:.35s; }
.servicios-contenedor .servicio:nth-child(8){ animation-delay:.4s; }

.testimonios .testimonio:nth-child(1){ transition-delay:.05s; }
.testimonios .testimonio:nth-child(2){ transition-delay:.15s; }
.testimonios .testimonio:nth-child(3){ transition-delay:.25s; }
.estadisticas .estadistica:nth-child(1){ transition-delay:.05s; }
.estadisticas .estadistica:nth-child(2){ transition-delay:.12s; }
.estadisticas .estadistica:nth-child(3){ transition-delay:.19s; }
.estadisticas .estadistica:nth-child(4){ transition-delay:.26s; }

.contacto-info{
    width:80%;
    max-width:700px;
    margin:auto;
    padding:40px;
    text-align:center;
    animation:fadeInUp .7s ease both;
}
.contacto-info address{
    font-style:normal;
}
.contacto-info h3{
    margin-top:25px;
    color:#111;
}
.contacto-info h3:first-child{
    margin-top:0;
}
.contacto-info p{
    color:#555;
    margin-top:5px;
}
.contacto-info a{
    color:#0071e3;
    text-decoration:none;
    transition:color .2s ease;
}
.contacto-info a:hover{
    color:#2997ff;
    text-decoration:underline;
}

.contacto-formulario{
    width:80%;
    max-width:500px;
    margin:20px auto 60px;
    padding:30px;
    text-align:center;
    background:#fff;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    animation:fadeInUp .8s ease both;
}
.contacto-formulario h3{
    margin-bottom:20px;
}
.contacto-formulario label{
    font-weight:600;
    color:#333;
}
.contacto-formulario input,
.contacto-formulario textarea{
    width:100%;
    padding:10px 12px;
    margin-top:6px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:15px;
    transition:border-color .2s ease, box-shadow .2s ease;
}
.contacto-formulario input:focus,
.contacto-formulario textarea:focus{
    outline:none;
    border-color:#2997ff;
    box-shadow:0 0 0 3px rgba(41,151,255,.2);
}
.contacto-formulario button{
    margin-top:15px;
    background:#0071e3;
    color:#fff;
    border:none;
    border-radius:25px;
    padding:12px 32px;
    font-size:16px;
    cursor:pointer;
    transition:background .2s ease, transform .2s ease;
}
.contacto-formulario button:hover{
    background:#005bb5;
    transform:translateY(-2px);
}

.testimonios{
    width:90%;
    max-width:1200px;
    margin:20px auto 80px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}
.testimonio{
    background:#fff;
    border-radius:20px;
    padding:32px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:transform .3s ease, box-shadow .3s ease;
}
.testimonio:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 30px rgba(0,0,0,.15);
}
.testimonio .estrellas{
    color:#ffb300;
    font-size:16px;
    margin-bottom:14px;
}
.testimonio p.cita{
    color:#444;
    font-size:15.5px;
    line-height:1.6;
    margin-bottom:20px;
}
.testimonio .autor{
    display:flex;
    align-items:center;
    gap:12px;
}
.testimonio .avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    background:linear-gradient(135deg,#2997ff,#6fc3ff);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    flex-shrink:0;
}
.testimonio .autor strong{
    display:block;
    color:#111;
    font-size:15px;
}
.testimonio .autor span{
    color:#888;
    font-size:13px;
}

.confianza{
    background:#050505;
    padding:22px 0;
    overflow:hidden;
    white-space:nowrap;
    border-top:1px solid #1c1c1e;
    border-bottom:1px solid #1c1c1e;
}
.confianza-track{
    display:inline-flex;
    animation:marquee 26s linear infinite;
}
.confianza-track span{
    color:#c9c9cc;
    font-size:15px;
    margin:0 34px;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.flotantes{
    position:fixed;
    right:22px;
    bottom:22px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
    z-index:200;
}
.flotante-btn{
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:26px;
    box-shadow:0 8px 20px rgba(0,0,0,.3);
    transition:transform .25s ease, box-shadow .25s ease;
}
.flotante-btn:hover{
    transform:translateY(-4px) scale(1.05);
}
.whatsapp-btn{
    background:#25D366;
    color:#fff;
}
.subir-btn{
    background:#fff;
    color:#111;
    font-size:20px;
    border:1px solid #ddd;
    opacity:0;
    pointer-events:none;
    transform:translateY(15px);
    transition:opacity .3s ease, transform .3s ease;
}
.subir-btn.visible{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
}

footer{
    background:#000;
    color:#fff;
    text-align:center;
    padding:40px;
}
footer h3{
    margin-bottom:10px;
}
footer p{
    margin:8px 0;
}
