* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #0a0a0a;
    color: #f0f0f0;

}

h1 { font-size: 2.5em; }
h2 { font-size: 2.7em; }
h3 { font-size: 2em; }
p { font-size: 1.2em; }
ul { list-style: none; }
li { font-size: 1.25em; }

button {
    font-size: 1.5em;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    color: white;
    background-color: rgb(206, 51, 59);
    transition: all 0.3s ease;
    cursor: pointer;
}

button:hover {
    background-color: rgb(139, 139, 136);
    transform: translateY(-2px);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.6);
}

.container {
    max-width: 1400px;
    margin: auto;
}

.color-acento-rojo {
    color: rgb(206, 51, 59);
}

/* HEADER */
.header {
    position: fixed;
    width: 100%;
    z-index: 1000;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    font-weight: bold;
    font-size: 1.3em;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.icono {
    height: 50px;
    width: 50px;
}

.cabina {
    color: #FFB6B6;
    font-weight: bold;
    font-size: 1.4em;
    text-shadow: 0 0 10px rgba(255, 182, 182, 0.5);
}

.roja {
    color: #FF0000;
    font-weight: bold;
    font-size: 1.4em;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}


/* PACKS DISPONIBLES - MEJORADO CON DESCRIPCIONES ANIMADAS */
#packs_Disponibles {
    background: linear-gradient(135deg, #311515 0%, #171a30 100%);
    text-align: center;
    padding: 80px 10px 80px;
    position: relative;
    overflow: hidden;
}

.titulo-packs {
    margin-bottom: 12px;
}

.titulo-packs .packs {
    color: #ffb6b6;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(255, 182, 182, 0.7);
    display: block;
    margin-bottom: 5px;
}

.titulo-packs::after { /* linea debajo del perfil*/
    content: "";
    display: block;
    margin: 20px auto 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d72638, #ffb6b6, #d72638, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(215, 38, 56, 0.5);
}

.packs_Disponibles-grid {
    display: grid;
    padding: 20px;
}

@media (min-width: 768px) {
    .packs_Disponibles-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 35px;
        grid-row-gap: 70px;
    }
    #packs_Disponibles {
        font-size: 20px;
        padding: 120px 10px 100px;
    }
    
    .titulo-packs .packs {
        font-size: 2.2rem;
    }
    
    .titulo-packs .perfil {
        font-size: 2.8rem;
    }
}



.pack-item {
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(215, 38, 56, 0.3);
    position: relative;
}

.pack-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(215, 38, 56, 0.4);
    border-color: rgba(215, 38, 56, 0.6);
}

/* Thumbnail efecto doble imagen */
.thumbnail {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.thumbnail-img, .thumbnail-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s ease;
}

.thumbnail-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.1);
}

.thumbnail:hover .thumbnail-img {
    opacity: 0;
    transform: scale(1.1);
}

.thumbnail:hover .thumbnail-hover {
    opacity: 1;
    transform: scale(1);
}

/* Info de thumbnail con animaciones mejoradas */
.thumbnail-info {
    padding: 40px 4px;

}

.thumbnail-info h3 {
    margin: 0 0 12px 0;
    font-size: 1em;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.thumbnail-info p {
    font-size: 0.9em;
    margin: 0;
    line-height: 1.5;
    color: #c0c0c0c9;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.8;
    font-style: italic;

}

.pack-item:hover .thumbnail-info p {
    color: #ffffff;
    opacity: 0.6;
    transform: translateY(2px);
}
/* Ajuste responsive para pantallas portadas videos más titulos y descripciones */

@media (max-width: 1920px) {
  .packs_Disponibles-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
  }

  .thumbnail-img, 
  .thumbnail-hover {
    max-height: 250px;
  }
}
@media (max-width: 1440px) {
  .packs_Disponibles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  .thumbnail-img, 
  .thumbnail-hover {
    max-height: 250px;
  }
}
@media (max-width: 1024px) {
  .packs_Disponibles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .thumbnail-img, 
  .thumbnail-hover {
    max-height: 250px;
  }
}

@media (max-width: 640px) {
  .packs_Disponibles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .thumbnail-img, 
  .thumbnail-hover {
    max-height: 250px;
  }
}
/* Efectos específicos para cada pack basados en su descripción */


/* GRUPO VIP - MEJORADO */
#GrupoVip {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#GrupoVip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e90ff, #00bfff, #1e90ff);
    z-index: 1;
}

#GrupoVip .container {
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

#GrupoVip h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(30, 144, 255, 0.7);
    font-weight: 800;
    letter-spacing: 1px;
}

#GrupoVip .color-acento-rojo {
    color: #1e90ff !important;
    text-shadow: 0 0 15px rgba(30, 144, 255, 0.9);
}

#GrupoVip p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0f7ff;
}

#GrupoVip button {
    background: linear-gradient(135deg, #1e90ff 0%, #00bfff 100%);
    border: none;
    padding: 15px 40px;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(30, 144, 255, 0.4);
}

#GrupoVip button:hover {
    background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.6);
}

@media (min-width: 720px) {
    #GrupoVip .container {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    #GrupoVip .texto {
        width: 50%;
        max-width: 600px;
        text-align: initial;
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    #GrupoVip h2 {
        margin-top: 0px;
        font-size: 4rem;
    }
    #GrupoVip .img-cantainer {
        background-image: url("/media/GrupoVip/ImgLogoTL2.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        height: 500px;
        width: 400px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
}

/* SERVICIOS - MEJORADO */
#Servicio {
    background: linear-gradient(135deg, #2d1a1a 0%, #1a0f0f 100%);
    color: white;
    text-align: center;
    padding: 100px 0 80px;
    position: relative;
}

#Servicio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d72638, #ff6b6b, #d72638);
    z-index: 1;
}

#Servicio .container {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#Servicio h2 {
    margin-top: 0;
    font-size: 3.5rem;
    margin-bottom: 60px;
    text-align: center;
    width: 100%;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(215, 38, 56, 0.7);
    font-weight: 800;
    letter-spacing: 1px;
}

#Servicio .programas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

#Servicio .carta {
    background-position: center center;
    background-size: cover;
    padding: 40px 25px;
    border-radius: 20px;
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    border: 1px solid rgba(215, 38, 56, 0.3);
    position: relative;
    overflow: hidden;
}

#Servicio .carta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

#Servicio .carta > * {
    position: relative;
    z-index: 2;
}

#Servicio .carta:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(215, 38, 56, 0.4);
    border-color: rgba(215, 38, 56, 0.6);
}

.carta:first-child {
    background-image: url("/media/Escort1.jpg");
}

.carta:nth-child(2) {
    background-image: url("/media/Cine.jpg");
}

.carta:nth-child(3) {
    background-image: url("/media/Prenda.jpg");
}

#Servicio .carta h3 {
    margin-top: 0;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

#Servicio .carta p {
    display: block;
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 1.1rem;
    color: #f0f0f0;
}

#Servicio .carta button {
    align-self: center;
    margin-top: auto;
    background: linear-gradient(135deg, #d72638 0%, #ff6b6b 100%);
    border: none;
    padding: 12px 30px;
    font-size: 1.2rem;
}

#Servicio .carta button:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #d72638 100%);
}

/* HOTLINE - MEJORADO */
#HotLine {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 90vh;
    background: linear-gradient(135deg, rgba(43, 20, 48, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), url("/media/VideollamadaPortada.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 20px;
    position: relative;
}

#HotLine::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #752c92, #8e44ad, #9b59b6);
    z-index: 1;
}

#HotLine li {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    text-decoration: none;
    font-weight: bold;
    color: #ffffff;
    font-size: 1.8rem;
    margin: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(155, 89, 182, 0.7);
    background: rgba(155, 89, 182, 0.2);
    padding: 20px 40px;
    border-radius: 15px;
    border: 1px solid rgba(155, 89, 182, 0.3);
    min-width: 300px;
    justify-content: center;
}

#HotLine li:hover {
    background: rgba(168, 46, 216, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(155, 89, 182, 0.4);
    color: #f8f8f8;
}







/* VIDEOJUEGOS INICIO */
#videojuegos-desbloqueo {
    background: linear-gradient(135deg, #0a0a1f 0%, #1a0033 100%);
    padding: 100px 20px;
    color: white;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Tarjeta estilo VIP Gamer */
.gamer-vip-card {
    display: flex;
    max-width: 920px;
    margin: 0 auto;
    background: rgba(15, 10, 35, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(138, 0, 255, 0.3);
    border: 2px solid #8a00ff;
}

.gamer-left {
    width: 42%;
    position: relative;
}

.gamer-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Contenido derecho */
.gamer-right {
    width: 58%;
    padding: 50px 45px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gamer-right h2 {
    font-size: 2.8rem;
    margin: 0 0 8px 0;
    background: linear-gradient(90deg, #ffffff, #c026d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gamer-right .glow {
    color: #00f0ff;
    text-shadow: 0 0 20px #00f0ff;
}

.gamer-right h3 {
    font-size: 1.75rem;
    margin: 0 0 20px 0;
    color: #ff00aa;
}

.gamer-right p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Botón estilo VIP */
.btn-jugar-gamer {
    display: inline-block;
    padding: 16px 48px;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, #ff00aa, #00f0ff);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 0, 170, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.btn-jugar-gamer:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.5);
}

/* Responsivo */
@media (max-width: 768px) {
    .gamer-vip-card {
        flex-direction: column;
    }
    .gamer-left {
        width: 100%;
        height: 280px;
    }
    .gamer-right {
        width: 100%;
        padding: 40px 30px;
        text-align: center;
    }
    .btn-jugar-gamer {
        align-self: center;
    }
}
/* VIDEOJUEGOS FIN*/





.main-header {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a0b0b; /* Combinando con el fondo de las tarjetas */
}

.main-title {
    font-family: 'Arial Black', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(255, 77, 77, 0.5); /* Brillo sutil rojo */
}

.subtitle {
    color: #bbb;
    font-size: 1.1rem;
    margin-top: 10px;
    font-style: italic;
    font-weight: 300;
}

.header-line {
    width: 60px;
    height: 4px;
    background: #ff4d4d; /* Línea de acento roja */
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Ajuste para móviles */
@media (max-width: 600px) {
    .main-title {
        font-size: 1.8rem;
    }
}




/* ============================================= */
/* =============== HEADER GENERAL ============== */
/* ============================================= */

.header {
    background-color: #000;     /* Fondo negro sólido */
    padding: 10px 30px;
    color: #fff;
}

.container {
    display: flex;
    justify-content: space-between;   /* Logo a la izquierda - Contenido derecho a la derecha */
    align-items: center;              /* Centrado vertical de todos los elementos */
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

/* ============================================= */
/* =============== LADO IZQUIERDO ============== */
/* ============================================= */

/* Logo Cabina Roja */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.icono {
    height: 50px;
    width: 50px;
    flex-shrink: 0;
}

.cabina {
    color: #ffffff;         /* Rosa claro */
    font-weight: bold;
    font-size: 1.2 em;
}

.roja {
    color: #FF0000;         /* Rojo intenso */
    font-weight: bold;
    font-size: 1.2 em;
}

/* ============================================= */
/* =============== LADO DERECHO ================ */
/* ============================================= */

/* Contenedor de la zona derecha (perfil + otros perfiles) */
.perfiles-zona {
    display: flex;
    align-items: center;
    gap: 25px;                  /* Espacio entre "Perfil: Ximena" y "Otros Perfiles" */
}

/* ===================== PERFIL ===================== */

/* Enlace principal del perfil */
.perfil-link {
    display: flex;
    align-items: center;        /* Alinea icono y texto verticalmente */
    gap: 3px;                   /* Espacio entre icono y texto */
    text-decoration: none;
    color: #ffffff;             /* Color base del enlace */
    font-size: 0.5 em;
    font-weight: bold;
}

.icono-perfil {
    width: 26px;
    height: 26px;
    flex-shrink: 0;             /* Evita que se comprima */
    margin-top: 2px;            /* Ajuste fino de alineación vertical */
}

/* Nombre de usuario (Ximena) */
.nombre-usuario {
    color: #60ff6d;             /* Rosa/rojo para destacar el nombre */
    font-weight: bold;
}

/* ===================== OTROS PERFILES ===================== */

.otros-perfiles-link {
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    color: #B0E0E6;             /* Azul pálido para diferenciar */
    padding-right: 0.1%;
}

/* ============================================= */
/* ================== HOVERS ==================== */
/* ============================================= */


/* Hover en "Otros Perfiles" */
.otros-perfiles-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}