/* Strendus Deportes - Tema Ciudad de México */
/* Colores: Verde #006847, Blanco #FFFFFF, Rojo #CE1126, Oro #D4AF37 */

:root {
    --verde-mexico: #006847;
    --verde-oscuro: #004d35;
    --rojo-mexico: #CE1126;
    --rojo-oscuro: #a00d1e;
    --oro: #D4AF37;
    --oro-claro: #e8c547;
    --blanco: #FFFFFF;
    --negro: #0a0a0a;
    --gris-oscuro: #1a1a1a;
    --gris-medio: #2d2d2d;
    --texto-claro: #f5f5f5;
    --texto-secundario: #b8b8b8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, var(--negro) 0%, var(--gris-oscuro) 100%);
    color: var(--texto-claro);
    line-height: 1.7;
    min-height: 100vh;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; color: var(--oro); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--texto-secundario);
}

a {
    color: var(--oro);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--oro-claro);
}

/* Contenedor */
.contenedor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Encabezado */
.encabezado {
    background: linear-gradient(90deg, var(--verde-oscuro) 0%, var(--verde-mexico) 50%, var(--verde-oscuro) 100%);
    padding: 1rem 0;
    border-bottom: 3px solid var(--oro);
}

.encabezado-contenido {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-sitio {
    height: 60px;
    width: auto;
}

/* Navegación */
.navegacion-principal {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.navegacion-principal a {
    color: var(--blanco);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}

.navegacion-principal a:hover {
    background: var(--oro);
    color: var(--negro);
}

.boton-jugar {
    background: linear-gradient(135deg, var(--rojo-mexico) 0%, var(--rojo-oscuro) 100%);
    color: var(--blanco) !important;
    font-weight: 700;
    padding: 0.8rem 2rem !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(206, 17, 38, 0.4);
    animation: pulso 2s infinite;
}

.boton-jugar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(206, 17, 38, 0.6);
}

@keyframes pulso {
    0%, 100% { box-shadow: 0 4px 15px rgba(206, 17, 38, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(206, 17, 38, 0.7); }
}

/* Hero */
.seccion-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('../images/hero-mexico.webp') center/cover no-repeat;
    border-bottom: 4px solid var(--oro);
}

.hero-contenido {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-contenido h1 {
    font-size: 3rem;
    color: var(--blanco);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}

.hero-contenido h1 span {
    color: var(--oro);
}

.hero-descripcion {
    font-size: 1.25rem;
    color: var(--texto-claro);
    margin-bottom: 2rem;
}

.boton-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--oro) 0%, var(--oro-claro) 100%);
    color: var(--negro);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.boton-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
    color: var(--negro);
}

/* Secciones */
.seccion {
    padding: 4rem 0;
}

.seccion-titulo {
    text-align: center;
    margin-bottom: 3rem;
}

.seccion-titulo h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.seccion-titulo h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--verde-mexico), var(--oro), var(--rojo-mexico));
}

/* Tarjetas de Juegos */
.juegos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.juego-tarjeta {
    background: linear-gradient(145deg, var(--gris-medio) 0%, var(--gris-oscuro) 100%);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.juego-tarjeta:hover {
    transform: translateY(-8px);
    border-color: var(--oro);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.juego-imagen {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.juego-info {
    padding: 1.5rem;
}

.juego-info h3 {
    color: var(--oro);
    margin-bottom: 0.75rem;
}

.juego-info p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.juego-boton {
    display: inline-block;
    background: var(--verde-mexico);
    color: var(--blanco);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.juego-boton:hover {
    background: var(--verde-oscuro);
    color: var(--blanco);
}

/* Bono */
.seccion-bono {
    background: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde-mexico) 100%);
    position: relative;
    overflow: hidden;
}

.seccion-bono::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bono-bienvenida.webp') center/cover no-repeat;
    opacity: 0.15;
}

.bono-contenido {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.bono-contenido h2 {
    color: var(--blanco);
    font-size: 2.5rem;
}

.bono-monto {
    font-size: 4rem;
    color: var(--oro);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Métodos de Pago */
.metodos-pago-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.metodo-pago {
    background: var(--gris-medio);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    min-width: 150px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.metodo-pago:hover {
    border-color: var(--oro);
    transform: translateY(-5px);
}

.metodo-pago h4 {
    color: var(--oro);
    margin-bottom: 0.5rem;
}

/* Testimonios */
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonio-tarjeta {
    background: var(--gris-medio);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--oro);
}

.testimonio-cabecera {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonio-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--oro);
}

.testimonio-autor h4 {
    color: var(--blanco);
    margin-bottom: 0.25rem;
}

.testimonio-autor span {
    color: var(--texto-secundario);
    font-size: 0.9rem;
}

.testimonio-estrellas {
    color: var(--oro);
    margin-bottom: 1rem;
}

.testimonio-texto {
    font-style: italic;
    color: var(--texto-secundario);
}

.testimonio-fecha {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--texto-secundario);
}

/* FAQ */
.faq-lista {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gris-medio);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-pregunta {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-pregunta:hover {
    background: rgba(212, 175, 55, 0.1);
}

.faq-pregunta h4 {
    color: var(--oro);
    margin: 0;
}

.faq-respuesta {
    padding: 0 1.5rem 1.5rem;
    color: var(--texto-secundario);
}

/* Sobre Nosotros */
.sobre-nosotros-contenido {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sobre-item {
    background: var(--gris-medio);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border-top: 3px solid var(--verde-mexico);
}

.sobre-item h3 {
    color: var(--oro);
    margin-bottom: 1rem;
}

/* Licencia */
.licencia-contenido {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    background: var(--gris-medio);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.licencia-imagen {
    width: 150px;
    height: auto;
}

.licencia-texto h3 {
    color: var(--oro);
    margin-bottom: 1rem;
}

/* Juego Responsable */
.juego-responsable {
    background: linear-gradient(135deg, var(--rojo-oscuro) 0%, var(--rojo-mexico) 100%);
    text-align: center;
}

.juego-responsable h2 {
    color: var(--blanco);
}

.edad-restriccion {
    display: inline-block;
    background: var(--blanco);
    color: var(--rojo-mexico);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    line-height: 60px;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 1rem 0;
}

/* Soporte */
.soporte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.soporte-item {
    background: var(--gris-medio);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.soporte-item:hover {
    background: var(--verde-oscuro);
}

.soporte-item h4 {
    color: var(--oro);
    margin-bottom: 0.5rem;
}

/* Pie de Página */
.pie-pagina {
    background: var(--negro);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--oro);
}

.pie-contenido {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pie-seccion h4 {
    color: var(--oro);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pie-seccion ul {
    list-style: none;
}

.pie-seccion ul li {
    margin-bottom: 0.5rem;
}

.pie-seccion ul li a {
    color: var(--texto-secundario);
    transition: color 0.3s ease;
}

.pie-seccion ul li a:hover {
    color: var(--oro);
}

.pie-inferior {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gris-medio);
}

.pie-inferior p {
    font-size: 0.9rem;
}

.metodos-pago-pie {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.metodos-pago-pie img {
    height: 30px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.metodos-pago-pie img:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-contenido h1 {
        font-size: 2rem;
    }
    
    .bono-monto {
        font-size: 2.5rem;
    }
    
    .encabezado-contenido {
        flex-direction: column;
        text-align: center;
    }
    
    .navegacion-principal {
        justify-content: center;
    }
    
    .navegacion-principal a {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .seccion {
        padding: 2rem 0;
    }
    
    .licencia-contenido {
        flex-direction: column;
        text-align: center;
    }
}

/* Utilidades */
.texto-centro { text-align: center; }
.texto-oro { color: var(--oro); }
.texto-verde { color: var(--verde-mexico); }
.texto-rojo { color: var(--rojo-mexico); }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    background: var(--gris-oscuro);
}

.breadcrumb-lista {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb-lista li::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--texto-secundario);
}

.breadcrumb-lista li:last-child::after {
    display: none;
}

.breadcrumb-lista a {
    color: var(--texto-secundario);
}

.breadcrumb-lista li:last-child a {
    color: var(--oro);
}

/* Contenido de Página Interna */
.pagina-contenido {
    padding: 3rem 0;
}

.contenido-principal {
    max-width: 900px;
    margin: 0 auto;
}

.contenido-principal h1 {
    color: var(--oro);
    margin-bottom: 2rem;
    text-align: center;
}

.contenido-principal h2 {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gris-medio);
}

.imagen-destacada {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 16px;
    margin: 2rem auto;
    display: block;
    border: 2px solid var(--oro);
}

.info-juego {
    background: var(--gris-medio);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.info-juego-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    text-align: center;
}

.info-item {
    padding: 1rem;
    background: var(--gris-oscuro);
    border-radius: 8px;
}

.info-item span {
    display: block;
    color: var(--texto-secundario);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.info-item strong {
    color: var(--oro);
    font-size: 1.2rem;
}
