/* =====================================================
   PALETA PREMIUM
===================================================== */

:root{

    --primary:#00bfff;
    --primary2:#008cff;

    --dark:#020b12;
    --dark2:#071d2d;

    --text:#ffffff;
    --gray:#cfcfcf;

    --glass:rgba(255,255,255,.05);

    --shadow:
    0 10px 30px rgba(0,0,0,.35);

    --transition:.3s ease;
}

/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:
    linear-gradient(
        135deg,
        #03131f 0%,
        #071d2d 35%,
        #041018 65%,
        #000 100%
    );

    color:#fff;

    overflow-x:hidden;
}

/* =====================================================
   GLOBAL
===================================================== */

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

section{
    position:relative;
}

.container{
    position:relative;
    z-index:2;
}

/* =====================================================
   HEADER
===================================================== */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100px;

    z-index:1000;

    background:rgba(5,15,25,.78);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-bottom:
    1px solid rgba(255,255,255,.06);

    transition:top .35s ease;
}

/* NAVBAR */

.navbar{

    max-width:1400px;
    height:100%;

    margin:auto;

    padding:0 35px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */

.logo-container{

    display:flex;
    align-items:center;
    gap:15px;
}

.logo-img{

    width:72px;
    height:72px;

    object-fit:contain;

    background:#fff;

    border-radius:18px;

    padding:6px;

    box-shadow:
    0 0 18px rgba(0,191,255,.35);

    transition:transform .3s ease;
}

.logo-img:hover{
    transform:scale(1.04);
}

.logo-text h1{

    font-size:24px;
    font-weight:700;

    line-height:1;
}

.logo-text span{

    color:var(--primary);

    font-size:15px;
    letter-spacing:3px;

    font-weight:600;
}

/* MENU */

.menu{

    display:flex;
    align-items:center;
    gap:30px;

    list-style:none;
}

.menu li a{

    position:relative;

    display:flex;
    align-items:center;
    gap:8px;

    color:#fff;

    font-size:16px;
    font-weight:500;

    transition:color var(--transition);
}

.menu li a i{
    color:var(--primary);
}

.menu li a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-6px;

    width:0%;
    height:2px;

    background:var(--primary);

    transition:width var(--transition);
}

.menu li a:hover{
    color:var(--primary);
}

.menu li a:hover::after{
    width:100%;
}

/* HAMBURGER */

.hamburger{

    display:none;

    font-size:30px;

    color:#fff;

    cursor:pointer;

    z-index:2000;
}

/* =====================================================
   VIDEO HERO
===================================================== */

.promo-video{

    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#000;
}

.promo-video video{

    position:absolute;

    top:50%;
    left:50%;

    width:100%;
    height:100%;

    object-fit:cover;

    transform:translate(-50%,-50%);

    z-index:0;
}

/* OVERLAY */

.video-overlay{

    position:absolute;

    inset:0;

    z-index:1;

    background:
    linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.65)
    );
}

/* CONTENIDO HERO */

.promo-content{

    position:relative;

    z-index:2;

    max-width:900px;

    padding:20px;

    text-align:center;
}

.promo-content h2{

    font-size:68px;
    font-weight:800;

    line-height:1.1;

    margin-bottom:20px;

    text-shadow:
    0 8px 30px rgba(0,0,0,.45);
}

.promo-content p{

    font-size:22px;

    color:#ddd;

    max-width:700px;

    margin:auto;

    line-height:1.7;
}

/* =====================================================
   PRODUCTS
===================================================== */

.products{

    padding:120px 0;
}

/* TITULO */

.section-title{

    text-align:center;

    margin-bottom:55px;

    font-size:42px;
    font-weight:700;
}

/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card{

    position:relative;

    height:100%;

    overflow:hidden;

    padding:28px;

    text-align:center;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    border-radius:24px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,.10),
        rgba(255,255,255,.03)
    );

    border:
    1px solid rgba(255,255,255,.08);

    box-shadow:var(--shadow);

    transition:
    transform .3s ease,
    border .3s ease,
    box-shadow .3s ease;
}

.product-card::before{

    content:'';

    position:absolute;

    width:240px;
    height:240px;

    top:-120px;
    right:-120px;

    background:
    radial-gradient(
        circle,
        rgba(0,191,255,.22),
        transparent 70%
    );

    opacity:0;

    transition:opacity .35s ease;
}

.product-card:hover{

    transform:translateY(-8px);

    border:
    1px solid rgba(0,191,255,.25);

    box-shadow:
    0 0 25px rgba(0,191,255,.12),
    0 18px 40px rgba(0,0,0,.45);
}

.product-card:hover::before{
    opacity:1;
}

.product-card *{
    position:relative;
    z-index:2;
}

/* IMAGEN */

.product-card img{

    width:100%;
    height:220px;

    object-fit:contain;

    margin-bottom:24px;

    transition:transform .3s ease;
}

.product-card:hover img{
    transform:scale(1.03);
}

/* TEXTOS */

.product-card h3{

    font-size:24px;
    font-weight:700;

    margin-bottom:14px;
}

.product-card p{

    color:#d7d7d7;

    font-size:15px;

    line-height:1.7;

    margin-bottom:25px;

    min-height:55px;
}

/* =====================================================
   BOTONES
===================================================== */

.btn-detalles{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 28px;

    border-radius:16px;

    color:#fff;

    font-size:15px;
    font-weight:600;

    background:
    linear-gradient(
        135deg,
        rgba(0,191,255,.20),
        rgba(0,140,255,.15)
    );

    border:
    1px solid rgba(0,191,255,.30);

    transition:all .3s ease;
}

.btn-detalles:hover{

    transform:translateY(-3px);

    background:
    linear-gradient(
        135deg,
        rgba(0,191,255,.35),
        rgba(0,140,255,.22)
    );

    box-shadow:
    0 0 22px rgba(0,191,255,.25);
}

/* HERO CTA */

.hero{

    padding:110px 20px;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        rgba(0,191,255,.08),
        rgba(0,140,255,.04)
    );

    border-top:
    1px solid rgba(0,191,255,.10);

    border-bottom:
    1px solid rgba(0,191,255,.12);
}

.hero h2{

    font-size:52px;
    font-weight:800;

    margin-bottom:18px;
}

.hero p{

    color:#d4d4d4;

    margin-bottom:30px;

    font-size:18px;
}

/* BOTON PREMIUM */

.btn-premium{

    display:inline-block;

    padding:15px 36px;

    border-radius:40px;

    color:#fff;

    font-weight:600;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary2)
    );

    box-shadow:
    0 0 22px rgba(0,191,255,.28);

    transition:all .3s ease;
}

.btn-premium:hover{

    transform:translateY(-3px);

    box-shadow:
    0 0 28px rgba(0,191,255,.45);
}

/* =====================================================
   WHATSAPP
===================================================== */

.whatsapp-float{

    position:fixed;

    right:24px;
    bottom:24px;

    width:62px;
    height:62px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    font-size:34px;

    z-index:9999;

    box-shadow:
    0 8px 20px rgba(0,0,0,.25);

    transition:all .3s ease;
}

.whatsapp-float:hover{

    transform:scale(1.08);

    background:#1ebe5d;
}

/* =====================================================
   FOOTER
===================================================== */

.footer{

    padding:90px 10% 25px;

    background:
    linear-gradient(
        180deg,
        #02111c,
        #000
    );
}

.footer-container{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:40px;
}

.footer-box h2{

    font-size:28px;

    margin-bottom:20px;
}

.footer-box h3{

    display:flex;
    align-items:center;
    gap:10px;

    color:var(--primary);

    font-size:22px;

    margin-bottom:20px;
}

.footer-box p{

    color:#cfcfcf;

    line-height:1.8;

    margin-bottom:14px;

    font-size:15px;
}

.footer-logo{

    width:100px;

    background:#fff;

    border-radius:20px;

    padding:8px;

    margin-bottom:20px;
}

.footer-box a{

    display:flex;
    align-items:flex-start;
    gap:14px;

    color:#ccc;

    margin-bottom:18px;

    padding-bottom:12px;

    border-bottom:
    1px solid rgba(255,255,255,.06);

    transition:all .3s ease;
}

.footer-box a:hover{

    color:var(--primary);

    transform:translateX(4px);
}

.footer-box a i{
    color:var(--primary);
}

/* REDES */

.social-icons{

    display:flex;
    gap:14px;

    margin-top:20px;
}

.social-icons a{

    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#101010;

    color:#fff;

    border:
    1px solid rgba(255,255,255,.08);

    transition:all .3s ease;
}

.social-icons a:hover{

    background:var(--primary);

    color:#000;

    transform:translateY(-4px);
}

/* COPYRIGHT */

.footer-bottom{

    margin-top:50px;

    padding-top:20px;

    border-top:
    1px solid rgba(255,255,255,.08);

    text-align:center;
}

.footer-bottom p{

    color:#888;

    font-size:14px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:991px){

    .promo-content h2{
        font-size:52px;
    }

    .product-card img{
        height:190px;
    }

    .hero h2{
        font-size:40px;
    }
}

@media(max-width:900px){

    header{
        height:90px;
    }

    .navbar{
        padding:15px 20px;
    }

    .logo-img{
        width:60px;
        height:60px;
    }

    .logo-text h1{
        font-size:18px;
    }

    .logo-text span{
        font-size:12px;
        letter-spacing:2px;
    }

    .hamburger{
        display:block;
    }

    .menu{

        position:absolute;

        top:100%;
        left:0;

        width:100%;

        flex-direction:column;

        gap:25px;

        padding:30px 0;

        background:#050505;

        display:none;
    }

    .menu.active{
        display:flex;
    }
}

@media(max-width:768px){

    .promo-video{
        height:70vh;
    }

    .promo-content h2{
        font-size:40px;
    }

    .promo-content p{
        font-size:18px;
    }

    .section-title{
        font-size:32px;
    }

    .hero{
        padding:80px 20px;
    }

    .hero h2{
        font-size:34px;
    }

    .footer{
        padding:60px 20px 20px;
    }
}

@media(max-width:600px){

    .promo-video{
        height:60vh;
    }

    .promo-content h2{
        font-size:30px;
    }

    .promo-content p{
        font-size:16px;
    }

    .products{
        padding:80px 20px;
    }

    .product-card{
        padding:20px;
    }

    .product-card img{
        height:180px;
    }

    .section-title{
        font-size:28px;
    }

    .whatsapp-float{

        width:55px;
        height:55px;

        font-size:30px;

        right:20px;
        bottom:20px;
    }
}