/* ==========================
   CRUISING FUSION - PREMIUM
   ========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#030305;
    color:white;
    line-height:1.6;
    overflow-x:hidden;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at 20% 20%, rgba(124,58,237,.25), transparent 35%),
        radial-gradient(circle at 80% 10%, rgba(34,211,238,.18), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(37,99,235,.18), transparent 35%);
    pointer-events:none;
    z-index:-1;
}

/* HEADER */

header{
    position:fixed;
    top:18px;
    left:50%;
    transform:translateX(-50%);
    width:calc(100% - 60px);
    max-width:1300px;
    z-index:999;

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

    padding:14px 22px;

    background:rgba(5,5,8,.72);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.12);
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.logo img{
    height:40px;
    width:auto;
    display:block;
    object-fit:contain;
}

nav{
    display:flex;
    align-items:center;
    gap:10px;
}

nav a{
    color:#e5e7eb;
    text-decoration:none;
    font-size:15px;
    padding:10px 15px;
    border-radius:50px;
    transition:.25s;
}

nav a:hover{
    color:white;
    background:rgba(255,255,255,.08);
    box-shadow:0 0 18px rgba(124,58,237,.35);
}

.admin-link{
    color:#c084fc !important;
}

.admin-link:hover{
    color:white !important;
}

/* HERO */

.hero{
    position:relative;
    height:100vh;
    min-height:720px;
    overflow:hidden;
}

.hero-slider{
    position:absolute;
    inset:0;
}

.hero-slider img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transform:scale(1.04);
    transition:opacity 1.2s ease, transform 6s ease;
}

.hero-slider img.active{
    opacity:1;
    transform:scale(1);
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.62) 42%, rgba(0,0,0,.25) 100%),
        linear-gradient(0deg, rgba(3,3,5,1) 0%, rgba(3,3,5,.1) 38%, rgba(3,3,5,.35) 100%);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;

    padding:140px 8% 80px 8%;
    text-align:left;
}

.hero h1{
    max-width:850px;
    font-size:clamp(52px,7vw,110px);
    line-height:.95;
    margin-bottom:20px;
    letter-spacing:-3px;
    text-shadow:0 0 40px rgba(124,58,237,.85);
}

.hero p{
    font-size:clamp(22px,2.2vw,34px);
    color:#dbeafe;
    margin-bottom:14px;
    font-weight:bold;
}

.hero-text{
    max-width:720px;
    color:#d1d5db;
    font-size:20px;
    margin-top:10px;
}

.btn{
    margin-top:34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;

    background:linear-gradient(135deg,#7c3aed,#2563eb,#22d3ee);
    color:white;
    text-decoration:none;
    padding:15px 34px;
    border-radius:999px;
    font-weight:bold;
    letter-spacing:.5px;
    box-shadow:0 0 30px rgba(124,58,237,.55);
    transition:.25s;
}

.btn:hover{
    transform:translateY(-4px) scale(1.02);
    box-shadow:0 0 45px rgba(34,211,238,.55);
}

/* SECCIONES */

section{
    position:relative;
    padding:110px 7%;
}

section h2{
    text-align:center;
    font-size:clamp(36px,4vw,62px);
    line-height:1;
    margin-bottom:55px;
    letter-spacing:-1px;
    text-shadow:0 0 25px rgba(124,58,237,.45);
}

section h2::after{
    content:"";
    display:block;
    width:90px;
    height:4px;
    margin:22px auto 0;
    border-radius:30px;
    background:linear-gradient(90deg,#7c3aed,#22d3ee);
}

.section-subtitle{
    text-align:center;
    color:#cbd5e1;
    font-size:20px;
    margin-top:-35px;
    margin-bottom:40px;
}

/* SERVICIOS */

.cards{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:26px;
}

.card{
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
    border:1px solid rgba(255,255,255,.12);
    border-radius:28px;
    padding:34px 26px;
    text-align:center;
    transition:.3s;
    box-shadow:0 20px 50px rgba(0,0,0,.28);
}

.card::before{
    content:"";
    position:absolute;
    inset:-1px;
    background:linear-gradient(135deg,rgba(124,58,237,.35),transparent,rgba(34,211,238,.25));
    opacity:0;
    transition:.3s;
    z-index:0;
}

.card:hover::before{
    opacity:1;
}

.card:hover{
    transform:translateY(-8px);
    border-color:rgba(124,58,237,.8);
    box-shadow:0 30px 70px rgba(124,58,237,.25);
}

.card > *{
    position:relative;
    z-index:1;
}

.card h3{
    font-size:27px;
    margin-bottom:12px;
    color:#f8fafc;
}

.card p{
    color:#cbd5e1;
    font-size:16px;
}

.servicio-card{
    padding:0;
    text-align:left;
}

.servicio-card img{
    width:100%;
    height:320px;
    object-fit:contain;
    background:#050505;
}

.card-content{
    padding:26px;
}

/* PRECIOS */

.poster{
    max-width:980px;
    margin:auto;
    border-radius:32px;
}

.poster img{
    width:100%;
    display:block;
    border-radius:32px;
    border:1px solid rgba(255,255,255,.14);
    box-shadow:
        0 0 0 1px rgba(255,255,255,.05),
        0 30px 90px rgba(37,99,235,.28),
        0 0 70px rgba(124,58,237,.18);
}

/* EVENTOS */

.galeria{
    max-width:1350px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:28px;
}

.evento{
    overflow:hidden;
    border-radius:28px;
    background:#111827;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 22px 55px rgba(0,0,0,.32);
}

.evento img{
    width:100%;
    display:block;
    transition:.45s;
}

.evento:hover img{
    transform:scale(1.045);
}

/* CONTACTO */

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

.contacto a{
    min-width:180px;
    text-align:center;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.12);
    color:white;
    text-decoration:none;
    padding:17px 28px;
    border-radius:999px;
    font-weight:bold;
    transition:.25s;
}

.contacto a:hover{
    background:linear-gradient(135deg,#7c3aed,#2563eb);
    transform:translateY(-3px);
    box-shadow:0 0 30px rgba(124,58,237,.45);
}

/* WHATSAPP */

.whatsapp-float{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:999;
    background:#22c55e;
    color:white;
    text-decoration:none;
    padding:15px 24px;
    border-radius:999px;
    font-weight:bold;
    box-shadow:0 0 28px rgba(34,197,94,.55);
    transition:.25s;
}

.whatsapp-float:hover{
    transform:translateY(-4px);
}

/* FOOTER */

footer{
    text-align:center;
    padding:38px 20px;
    color:#9ca3af;
    border-top:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.4);
}

/* MÓVIL */

@media(max-width:768px){

     header{
            top:10px;
            width:calc(100% - 20px);
            flex-direction:column;
            gap:6px;
            padding:8px 10px;
            border-radius:20px;
    }

   
    
    .logo img{
        height:30px;
        max-width:90vw;
    }

    nav{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:5px;
    }

    nav a{
        font-size:12px;
        padding:7px 9px;
    }

    .hero{
        min-height:780px;
    }

    .hero-overlay{
        align-items:center;
        justify-content:center;
        text-align:center;
        padding:170px 22px 70px;
        background:
            linear-gradient(0deg, rgba(0,0,0,.92), rgba(0,0,0,.45)),
            linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.25));
    }

    .hero h1{
        font-size:44px;
        letter-spacing:-1px;
    }

    .hero p{
        font-size:20px;
    }

    .hero-text{
        font-size:16px;
    }

    section{
        padding:80px 18px;
    }

    section h2{
        font-size:34px;
        margin-bottom:42px;
    }

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

    .poster img{
        border-radius:22px;
    }

    .whatsapp-float{
        right:14px;
        bottom:14px;
        padding:12px 18px;
        font-size:14px;
    }
}

.contacto a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.contacto a i{
    font-size:22px;
}

.whatsapp-float{
    display:flex;
    align-items:center;
    gap:10px;
}

/* ==========================
   PROMOCIONES
   ========================== */

#promociones{
    background:
        linear-gradient(
            180deg,
            rgba(124,58,237,.10),
            rgba(3,3,5,0)
        );
}

#promociones .galeria{
    max-width:1200px;
}

#promociones .evento{
    border:1px solid rgba(34,211,238,.22);
    box-shadow:
        0 25px 70px rgba(34,211,238,.12),
        0 0 35px rgba(124,58,237,.16);
}

#promociones .evento:hover{
    border-color:rgba(34,211,238,.55);
}

#promociones .evento img{
    border-radius:28px;
}

#promociones h2::after{
    background:linear-gradient(90deg,#22d3ee,#7c3aed);
}

.contacto-titulo{
    text-align:center;
    font-size:24px;
    margin-bottom:25px;
    color:#cbd5e1;
    font-weight:600;
}

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

.contacto a{
    transition:.25s;
}

/* WhatsApp */

.contacto a[href*="wa.me"]{
    background:#25D366;
    color:white;
    border:none;
}

/* Instagram */

.contacto a[href*="instagram"]{
    background:linear-gradient(
        135deg,
        #833AB4,
        #FD1D1D,
        #FCAF45
    );
    color:white;
    border:none;
}

/* X */

.contacto a[href*="x.com"]{
    background:#000000;
    color:white;
    border:1px solid rgba(255,255,255,.15);
}

/* Google Maps */

.contacto a[href*="maps"]{
    background:#4285F4;
    color:white;
    border:none;
}

/* Waze */

.contacto a[href*="waze"]{
    background:#33CCFF;
    color:#0f172a;
    border:none;
}

/* Escríbenos */

.contacto a[href*="pqrs"]{
    background:#7c3aed;
    color:white;
    border:none;
}

/* Hover general */

.contacto a:hover{
    transform:translateY(-3px);
    box-shadow:0 0 25px rgba(255,255,255,.18);
}

.lang-switch{
    display:flex;
    align-items:center;
    gap:6px;
    margin-left:8px;
}

.lang-switch a{
    font-size:12px;
    padding:7px 11px;
    border-radius:999px;
    background:#111827;
    border:1px solid rgba(255,255,255,.08);
    color:#cbd5e1;
    text-decoration:none;
    transition:.25s;
}

.lang-switch a:hover{
    border-color:#7c3aed;
    color:white;
}

.lang-switch a.active-lang{
    background:linear-gradient(135deg,#7c3aed,#2563eb);
    color:white;
    border-color:transparent;
    box-shadow:0 0 18px rgba(124,58,237,.35);
}



.lang-float{
    position:fixed;
    right:25px;
    bottom:95px;

    z-index:999;

    background:#111827;
    color:white;

    text-decoration:none;

    padding:12px 16px;

    border-radius:999px;

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

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

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

    transition:.25s;
}

.lang-float:hover{
    border-color:#7c3aed;
}

@media(max-width:768px){

    .lang-float{
        bottom:70px;
        right:15px;
        padding:10px 14px;
    }

}

.check-politica{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#cbd5e1;
    line-height:1.5;
    font-size:14px;
    margin:10px 0 22px 0;
}

.check-politica input{
    margin-top:4px;
}

.check-politica a{
    color:#c084fc;
    text-decoration:none;
}

.check-politica a:hover{
    text-decoration:underline;
}

.check-politica span{
    display:block;
}

.check-politica a{
    display:inline-block;
    margin-top:8px;
    color:#c084fc;
    text-decoration:none;
    font-weight:600;
}

.fan-card-link{
    color:white;
    text-decoration:none;
}

.fan-action,
.fan-info{
    margin-top:18px;
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:bold;
}

.fan-action{
    background:linear-gradient(135deg,#7c3aed,#2563eb);
    color:white;
}

.fan-info{
    background:#1f2937;
    color:#cbd5e1;
    border:1px solid rgba(255,255,255,.08);
}

.logo-area{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}

.member-photo-link{
    text-decoration:none;
    display:block;
}

.member-photo{
    width:48px;
    height:48px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #7c3aed;
    background:#111827;
}

.no-photo{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#cbd5e1;
    font-size:11px;
    font-weight:bold;
    line-height:1.1;
}

@media(max-width:768px){
    header{
        align-items:stretch;
    }

    .logo-area{
        width:100%;
    }

    .member-photo-link{
        display:block;
    }
}