/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0b0b0b;
    color:white;
    overflow-x:hidden;
    transition:0.4s ease;
}

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

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 70px;

    background:rgba(8,8,8,0.72);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,0.06);

    transition:0.35s ease;

    box-shadow:0 6px 30px rgba(0,0,0,0.25);
}

/* =========================
   NAVBAR
========================= */

nav ul{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

nav ul li{
    position:relative;
}

nav a{

    color:rgba(255,255,255,0.92);

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:0.3s ease;

    position:relative;
}

nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#1e90ff;
    transition:0.3s;
}

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

nav a:hover{
    color:#1e90ff;
}

/* =========================
   DROPDOWN
========================= */

/* =========================
   DROPDOWN PREMIUM FIX
========================= */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;

    top:55px;
    left:0;

    width:280px;

    max-height:75vh;

    overflow-y:auto;

    background:rgba(20,20,20,0.97);

    backdrop-filter:blur(14px);

    border-radius:20px;

    padding:14px 0;

    list-style:none;

    display:flex;
    flex-direction:column;

    opacity:0;
    visibility:hidden;

    transform:translateY(10px);

    transition:0.35s ease;

    z-index:9999;

    border:1px solid rgba(255,255,255,0.06);

    box-shadow:0 20px 45px rgba(0,0,0,0.45);
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu::-webkit-scrollbar{
    width:6px;
}

.dropdown-menu::-webkit-scrollbar-thumb{
    background:#1e90ff;
    border-radius:20px;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;
    width:100%;

    padding:13px 22px;

    color:white;

    text-decoration:none;

    transition:0.3s ease;
}

.dropdown-menu li a:hover{
    background:#1e90ff;
    color:white;
}

.dropdown-title{
    padding:12px 22px;

    color:#1e90ff;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;
}

/* =========================
   TOP ACTIONS
========================= */

.top-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

#language-selector{
    padding:11px 14px;
    border:none;
    border-radius:14px;
    background:#1b1b1b;
    color:white;
    cursor:pointer;
    outline:none;
}

#theme-toggle{
    width:48px;
    height:48px;
    border:none;
    border-radius:14px;
    cursor:pointer;
    background:linear-gradient(135deg,#1e90ff,#00bfff);
    color:white;
    font-size:18px;
    transition:0.3s ease;
}

#theme-toggle:hover{
    transform:translateY(-4px);
}


/* =========================
   BUTTONS
========================= */

button,
.card-btn{
    border:none;
    padding:18px 34px;
    border-radius:16px;

    background:linear-gradient(135deg,#1e90ff,#00bfff);

    color:white;
    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:0.35s ease;

    box-shadow:0 10px 30px rgba(30,144,255,0.35);
}

button:hover,
.card-btn:hover{
    transform:translateY(-5px) scale(1.03);
    box-shadow:0 18px 35px rgba(30,144,255,0.45);
}

/* =========================
   SECTIONS
========================= */

.section{
    padding:120px 80px;
}

.section h2{
    text-align:center;
    font-size:50px;
    margin-bottom:65px;
}

.dark-section{
    background:#111;
}

/* =========================
   CARDS
========================= */

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

.card{
    background:#171717;

    border-radius:26px;

    overflow:hidden;

    transition:0.35s ease;

    border:1px solid rgba(255,255,255,0.05);

    box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

.card:hover{
    transform:translateY(-12px);
}

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.card-content{
    padding:28px;
}

.card-content h3{
    margin-bottom:14px;
    font-size:24px;
}

.card-content p{
    color:#d6d6d6;
    line-height:1.7;
    margin-bottom:22px;
}

/* =========================
   TRANSFER
========================= */

.transfer-box{
    max-width:700px;
    margin:auto;

    display:grid;
    gap:22px;
}

.transfer-box input,
.transfer-box select{
    padding:18px;
    border:none;
    border-radius:16px;
    background:#1b1b1b;
    color:white;
    font-size:16px;
    outline:none;
}

/* =========================
   CONTACT
========================= */

.contact-section{
    text-align:center;
    line-height:2.2;
    font-size:22px;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp-float{
    position:fixed;
    bottom:28px;
    right:28px;

    width:78px;
    height:78px;

    border-radius:50%;

    background:#25d366;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;
    text-decoration:none;

    font-size:42px;

    z-index:999;

    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,0.7);
    }

    70%{
        box-shadow:0 0 0 25px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

/* =========================
   LIGHT MODE
========================= */

body.light-mode{
    background:#f5f5f5;
    color:#111;
}

body.light-mode header{

    background:rgba(255,255,255,0.96);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(0,0,0,0.08);

    box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

/* LINKS */

body.light-mode nav a{
    color:#111 !important;
}

/* HOVER */

body.light-mode nav a:hover{
    color:#1e90ff !important;
}

/* LINEA HOVER */

body.light-mode nav a::after{
    background:#1e90ff;
}

/* DROPDOWN */

body.light-mode .dropdown-menu{

    background:rgba(255,255,255,0.98);

    backdrop-filter:blur(18px);

    border:1px solid rgba(0,0,0,0.06);
}

body.light-mode .dropdown-menu li a{
    color:#111 !important;
}

body.light-mode .dropdown-menu li a:hover{
    color:white !important;
}

/* SELECT */

body.light-mode #language-selector{
    background:white;
    color:#111;
    border:1px solid rgba(0,0,0,0.08);
}

body.light-mode .card{
    background:white;
    color:#111;
}

body.light-mode .card-content p{
    color:#555;
}

body.light-mode .dark-section{
    background:#ececec;
}

body.light-mode .dropdown-menu{
    background:white;
}

body.light-mode .dropdown-menu li a{
    color:#111;
}

body.light-mode .transfer-box input,
body.light-mode .transfer-box select{
    background:white;
    color:#111;
}

body.light-mode #language-selector{
    background:white;
    color:#111;
}

/* =========================
   UTILITIES
========================= */

.hidden-page{
    display:none;
}

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

@media(max-width:1100px){

    header{
        flex-direction:column;
        gap:20px;
        padding:22px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

}

@media(max-width:768px){

    .hero h1{

    font-size:clamp(3rem,8vw,7rem);

    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;

    text-align:center;

}

    .section h2{
        font-size:38px;
    }

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

    .dropdown-menu{
        width:230px;
    }

}

.logo img{

    height:85px;

    width:auto;

    object-fit:contain;

    display:block;

    transition:0.3s ease;

    filter:drop-shadow(0 4px 12px rgba(0,0,0,0.35));

}

.logo img:hover{

    transform:scale(1.04);

}

.whatsapp-float img{
    width:45px;
    height:45px;
}

.whatsapp-float{
    display:flex;
    justify-content:center;
    align-items:center;
}

/* =========================
   REDES SOCIALES
========================= */

.social-icons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin:40px 0;
}

.social-icons img{
    width:40px;
    height:40px;
    transition:0.3s;
}

.social-icons img:hover{
    transform:scale(1.15);
}

/* =========================
   HERO NETFLIX PRO
========================= */

.hero{
    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:0 30px;
}

/* VIDEO */

.hero-video{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:1;

    transform:scale(1.08);

    filter:brightness(0.82);
}

/* OVERLAY */

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.58),
        rgba(0,0,0,0.18),
        rgba(0,0,0,0.45)
    );

    z-index:2;
}

/* CONTENT */

.hero-content{
    position:relative;

    z-index:3;

    max-width:900px;

    text-align:center;

    padding:55px;

    border-radius:32px;

    background:rgba(255,255,255,0.06);

    backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,0.12);

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

    animation:heroFade 1.4s ease;
}

/* BADGE */

.hero-badge{
    display:inline-block;

    padding:12px 22px;

    border-radius:999px;

    margin-bottom:28px;

    font-size:14px;
    font-weight:600;

    letter-spacing:1px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);

    color:#d8ecff;
}

/* TITLE */

.hero-content h1{

    font-size:clamp(1.8rem,4vw,3.5rem);

    font-weight:700;

    line-height:1.15;

    margin-bottom:18px;

    text-align:center;

    letter-spacing:-1px;

    text-shadow:0 6px 20px rgba(0,0,0,0.35);
}

/* TEXT */

.hero-content p{
    font-size:1rem;

    line-height:1.7;

    color:#e5e5e5;

    margin-bottom:35px;

    max-width:650px;

    margin-left:auto;
    margin-right:auto;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.glass-btn{
    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.15);

    backdrop-filter:blur(14px);
}

/* ANIMATION */

@keyframes heroFade{

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

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

}

/* RESPONSIVE */

@media(max-width:768px){

    .hero-content{
        padding:35px 25px;
    }

    .hero-content h1{
        font-size:3rem;
    }

    .hero-content p{
        font-size:1rem;
    }

}

