/* =========================
   PALETA AZUL ELÉCTRICO + BLANCO
========================= */

:root{

    --primary:#00bfff;
    --primary2:#008cff;

    --dark:#020b12;
    --dark2:#071d2d;

    --text:#ffffff;
    --gray:#cfcfcf;
    --verde:#08c995;

    --glass:rgba(255,255,255,.06);

}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:
    linear-gradient(
    135deg,
    #03131f 0%,
    #071d2d 30%,
    #041018 60%,
    #000 100%
    );
    color:#fff;
    overflow-x:hidden;
}

/* ===== HEADER ===== */

header{

    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    height:110px;
    background:
    rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:
    1px solid rgba(0,191,255,.15);
    box-shadow:
    0 8px 30px rgba(0,0,0,.25);
    transition:top .4s ease;
}

/* NAVBAR */

.navbar{

    max-width:1400px;
    height:100%;
    margin:auto;
    padding:0 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */

.logo-container{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-img{
    width:80px;
    height:80px;
    object-fit:contain;
    background:#fff;
    border-radius:18px;
    padding:6px;
    box-shadow:0 0 25px rgba(0,191,255,0.5);
    transition:0.3s;
}

.logo-img:hover{
    transform:scale(1.05);
}

.logo-text h1{
    color:#ffffff;
    font-size:24px;
    font-weight:700;
    line-height:1;
    letter-spacing:1px;
}

.logo-text span{
    color:#00bfff;
    font-size:16px;
    font-weight:600;
    letter-spacing:4px;
}

/* MENU */

.menu{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

.menu li a{
    color:#ffff;
    text-decoration:none;
    font-size:17px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.3s;
    position:relative;
}

.menu li a i{
    color:#00bfff;
    font-size:16px;
}

.menu li a:hover{
    color:#00bfff;
}

.menu li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#00bfff;
    transition:0.3s;
}

.menu li a:hover::after{
    width:100%;
}

/* HAMBURGER */

.hamburger{
    display:none;
    color:#ffff;
    font-size:30px;
    cursor:pointer;
}

.hamburger{
    z-index:2000;
    position:relative;
}

/* RESPONSIVE */

@media(max-width:900px){

    .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%;
        background:#000;
        flex-direction:column;
        padding:30px 0;
        gap:25px;
        display:none;
        border-top:1px solid rgba(255,255,255,0.1);
    }

    .menu.active{
        display:flex;
    }

}

main{
    padding-top:140px;
}

/* HERO */
.hero {
    background:
    linear-gradient(
    135deg,
    rgba(0,191,255,.12),
    rgba(0,140,255,.08)
    );
    border-top:
    1px solid rgba(0,191,255,.15);
    border-bottom:
    1px solid rgba(0,191,255,.15);
    padding:100px 20px;
    position:relative;
    overflow:hidden;

}

.hero h2{

    font-size:52px;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;

}

.hero p{

    color:#cfd9df;
    font-size:18px;
    margin-bottom:30px;

}

/*======== PRECIO=========*/
.price {
    font-size: 38px;
    font-weight: 700;
    color: var(--verde);
}

.price-card{

    position:relative;
    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.08),
    rgba(0,191,255,.08)
    );
    border:
    1px solid rgba(0,191,255,.25);
    border-radius:24px;
    padding:28px;
    overflow:hidden;
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    box-shadow:
    0 10px 35px rgba(0,0,0,.35),
    0 0 25px rgba(0,191,255,.08);
    margin-bottom:25px;

}

/* EFECTO GLOW */

.price-card::before{

    content:'';
    position:absolute;
    top:-80px;
    right:-80px;
    width:180px;
    height:180px;
    background:
    radial-gradient(
    circle,
    rgba(0,191,255,.28),
    transparent 70%
    );

}

/* TOP */

.price-top{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
    gap:15px;

}

.old-price{

    color:#9fb3c8;
    text-decoration:line-through;
    font-size:15px;
    opacity:.8;

}

/* DESCUENTO */

.discount-badge{

    background:
    linear-gradient(
    135deg,
    #ff3d6e,
    #ff1744
    );
    color:#fff;
    padding:8px 14px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    display:flex;
    align-items:center;
    gap:8px;
    box-shadow:
    0 0 20px rgba(255,23,68,.35);

}

/* PRECIO PRINCIPAL */

.price-main{

    font-size:52px;
    font-weight:800;
    line-height:1;
    color:#fff;
    text-shadow:
    0 0 18px rgba(0,191,255,.35);

}

.price-main span{

    font-size:18px;
    color:#00bfff;
    margin-left:6px;
    font-weight:600;

}

/* TEXTO ABAJO */

.price-note{

    margin-top:14px;
    color:#b8c7d1;
    font-size:14px;
    letter-spacing:.4px;

}

/* RESPONSIVE */

@media(max-width:768px){

    .price-main{
        font-size:42px;
    }

    .price-top{
        flex-direction:column;
        align-items:flex-start;
    }

}

/* BUTTON */
.btn-premium{

    background:linear-gradient(
    135deg,
    #00bfff,
    #008cff
    );
    color:#fff;
    border:none;
    border-radius:40px;
    padding:16px 38px;
    font-weight:600;
    box-shadow:
    0 0 20px rgba(0,191,255,.35);
    transition:.3s ease;

}

.btn-premium:hover{

    transform:translateY(-3px);
    box-shadow:
    0 0 30px rgba(0,191,255,.6);

}

/* GALLERY */
.carousel img {
    border-radius: 16px;
    cursor: zoom-in;
}

/* =========================================
   ZOOM IMAGEN PRODUCTO
========================================= */

.image-modal{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.92);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;

    transition:.3s ease;

    z-index:99999;

    padding:20px;

}

.image-modal.active{

    opacity:1;
    visibility:visible;

}

.modal-img{

    max-width:90%;
    max-height:90%;

    border-radius:20px;

    box-shadow:
    0 0 40px rgba(0,191,255,.35);

    transform:scale(.8);

    transition:.3s ease;

}

.image-modal.active .modal-img{

    transform:scale(1);

}

.close-modal{

    position:absolute;

    top:30px;
    right:40px;

    color:#fff;

    font-size:50px;

    cursor:pointer;

    transition:.3s;

}

.close-modal:hover{

    color:#00bfff;
    transform:scale(1.1);

}

/* =========================================
   VIDEO PREMIUM
========================================= */

.video-section{

    position:relative;

    padding:140px 20px;

    overflow:hidden;

}

/* GLOW DE FONDO */

.video-bg-glow{

    position:absolute;

    width:700px;
    height:700px;

    background:
    radial-gradient(
    circle,
    rgba(0,191,255,.16),
    transparent 70%
    );

    top:50%;
    left:50%;

    transform:
    translate(-50%,-50%);

    pointer-events:none;

}

/* CONTENEDOR */

.video-wrapper{

    position:relative;

    max-width:1300px;

    margin:auto;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.02)
    );

    border:
    1px solid rgba(0,191,255,.15);

    border-radius:32px;

    overflow:hidden;

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    box-shadow:
    0 20px 60px rgba(0,0,0,.45),
    0 0 40px rgba(0,191,255,.08);

    transition:.5s ease;

}

/* HOVER PREMIUM */

.video-wrapper:hover{

    transform:
    translateY(-8px);

    border-color:
    rgba(0,191,255,.35);

    box-shadow:
    0 30px 80px rgba(0,0,0,.55),
    0 0 60px rgba(0,191,255,.18);

}

/* TEXTO */

.video-content{

    position:absolute;

    z-index:10;

    top:50px;
    left:50px;

    max-width:500px;

}

/* TAG */

.video-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:
    rgba(0,191,255,.12);

    border:
    1px solid rgba(0,191,255,.25);

    color:#00bfff;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;

    backdrop-filter:blur(10px);

}

/* TITULO */

.video-content h2{

    font-size:58px;

    font-weight:800;

    line-height:1.05;

    color:#fff;

    margin-bottom:20px;

    text-shadow:
    0 0 30px rgba(0,191,255,.18);

}

.video-content h2 span{

    color:#00bfff;

}

/* TEXTO */

.video-content p{

    color:#d5d5d5;

    font-size:18px;

    line-height:1.7;

    max-width:420px;

}

/* VIDEO */

.video-box{

    position:relative;

    width:100%;

    padding-top:56.25%;

}

/* OVERLAY CINEMATIC */

.video-box::after{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.15) 40%,
    rgba(0,0,0,.35) 100%
    );

    pointer-events:none;

}

/* IFRAME */

.video-box iframe{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    border:none;

    transform:scale(1.04);

    filter:
    brightness(.82)
    contrast(1.08)
    saturate(1.1);

}

/* RESPONSIVE */

@media(max-width:900px){

    .video-content{

        position:relative;

        top:auto;
        left:auto;

        padding:40px 30px 10px;

        max-width:100%;

    }

    .video-content h2{

        font-size:38px;

    }

    .video-content p{

        font-size:16px;

    }

    .video-box::after{

        background:
        linear-gradient(
        180deg,
        rgba(0,0,0,.65) 0%,
        rgba(0,0,0,.15) 50%,
        rgba(0,0,0,.45) 100%
        );

    }

}

/* FEATURES */
.feature{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(0,191,255,.15);
    border-radius:18px;
    padding:30px;
    text-align:center;
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:
    0 10px 30px rgba(0,0,0,.35);
    transition:.35s ease;
    min-height:220px;
}

.feature:hover{

    transform:translateY(-8px);
    border-color:rgba(0,191,255,.45);
    box-shadow:
    0 0 25px rgba(0,191,255,.25),
    0 15px 40px rgba(0,0,0,.45);

}

.feature h5{
    color:#fff;
}

.feature p{
    color:#cfcfcf;
}

.feature i{

    font-size:40px;
    color:#00bfff;
    margin-bottom:15px;
    text-shadow:
    0 0 20px rgba(0,191,255,.5);

}

/*COLORES DE LA UNIDAD*/
.color-option {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ddd;
    transition: .3s;
}

.color-option:hover,
.color-option.active {
    border-color: #08C995;
    transform: scale(1.1);
}

/* ====================FLECHAS CARRUSEL================= */

.product-carousel{
    position:relative;
}

/* BOTONES */

.product-carousel .carousel-control-prev,
.product-carousel .carousel-control-next{

    position:absolute;
    top:50%;

    width:48px;
    height:48px;

    transform:translateY(-50%);

    border-radius:50%;

    background:
    rgba(0,0,0,.55);

    border:
    1px solid rgba(0,191,255,.35);

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    box-shadow:
    0 0 18px rgba(0,191,255,.15);

    opacity:1;

    transition:.3s ease;

    z-index:20;
}

/* IZQUIERDA */

.product-carousel .carousel-control-prev{
    left:12px;
}

/* DERECHA */

.product-carousel .carousel-control-next{
    right:12px;
}

/* ICONOS */

.product-carousel .carousel-control-prev-icon,
.product-carousel .carousel-control-next-icon{

    width:18px;
    height:18px;

    filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 6px rgba(0,191,255,.8));
}

/* HOVER */

.product-carousel .carousel-control-prev:hover,
.product-carousel .carousel-control-next:hover{

    background:
    rgba(0,191,255,.18);

    border:
    1px solid rgba(0,191,255,.75);

    box-shadow:
    0 0 20px rgba(0,191,255,.45);

    transform:
    translateY(-50%)
    scale(1.08);
}

/* MOBILE */

@media(max-width:768px){

    .product-carousel .carousel-control-prev,
    .product-carousel .carousel-control-next{

        width:40px;
        height:40px;
    }

}

/* TABLE */
.table-premium{

    background:rgba(255,255,255,.05);
    border:1px solid rgba(0,191,255,.15);
    border-radius:20px;
    overflow:hidden;
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    box-shadow:
    0 10px 35px rgba(0,0,0,.35);

}

.table{
    --bs-table-bg: transparent;
    color:#fff;
    margin-bottom:0;
}

.table th{
    color:#00bfff;
    font-weight:500;
    border-color:rgba(255,255,255,.08);
    background:transparent !important;
}

.table td{
    color:#e5e5e5;
    border-color:rgba(255,255,255,.08);
    background:transparent !important;
}

.text-muted{
    color:#b8c7d1 !important;
}

/* BOTÓN FLOTANTE WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: 0.3s ease-in-out;
    animation: whatsappPulse 2s infinite;
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    background-color: #1ebe5d;
}

.whatsapp-float {
    text-decoration: none !important;
    line-height: 1;
}

.whatsapp-float i {
    text-decoration: none !important;
    line-height: 1;
}

/* EFECTO DE PULSO */
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* MÓVILES */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== FOOTER ===== */

.footer{

    background:
    linear-gradient(
    180deg,
    #02111c,
    #000
    );
    padding:90px 10% 25px;
    border-top:
    1px solid rgba(0,191,255,.15);
    position:relative;
    z-index:1;
}

/* LINEA GLOW */

.footer::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:#00bfff;
    box-shadow:0 0 20px #00bfff;
}

/* CONTAINER */

.footer-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

/* BOXES */

.footer-box h2{
    color:#fff;
    margin-bottom:20px;
    font-size:28px;
}

.footer-box h3{
    color:#00bfff;
    margin-bottom:20px;
    font-size:22px;
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-box p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:15px;
    font-size:15px;
}

/* LOGO */

.footer-logo{
    width:100px;
    background:#fff;
    border-radius:20px;
    padding:8px;
    margin-bottom:20px;
    box-shadow:0 0 25px rgba(0,191,255,0.5);
}

/* LINKS */

.footer-box a{

    display:flex;
    align-items:flex-start;
    gap:14px;
    color:#ccc;
    text-decoration:none;
    margin-bottom:22px;
    transition:0.3s;
    font-size:15px;
    line-height:1.6;
    word-break:break-word;
    padding-bottom:12px;
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.footer-box a i{

    color:#00bfff;
    font-size:18px;
    min-width:12px;
    margin-top:2px;
}

.footer-box a:hover{

    color:#00bfff;
    transform:translateX(4px);
    border-color:rgba(0,191,255,0.25);
}

/* REDES */

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#111;
    border-radius:50%;
    color:#fff;
    font-size:18px;
    transition:0.3s;
    border:1px solid rgba(255,255,255,0.1);
}

.social-icons a:hover{
    background:#00bfff;
    color:#000;
    transform:translateY(-5px);
    box-shadow:0 0 20px #00bfff;
}

/* COPYRIGHT */

.footer-bottom{
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
}

.footer-bottom p{
    color:#888;
    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .footer{
        padding:60px 20px 20px;
    }

    .footer-container{
        gap:50px;
    }

}

/* RESPONSIVE */

@media(max-width:900px){

    nav{
        padding:20px;
    }

    .slide-content{
        left:20px;
        right:20px;
    }

    .slide-content h1,
    .promo-content h2{
        font-size:45px;
    }

    .about{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:35px;
    }

    .about-content h2{
        font-size:35px;
    }

}

@media(max-width:600px){

    .slide-content h1,
    .promo-content h2{
        font-size:35px;
    }

    .slide-content p,
    .promo-content p{
        font-size:16px;
    }

    .products,
    .about,
    .contact,
    .avisos{
        padding:80px 20px;
    }

}