/* Casino Big Bola - Tema Dorado Premium 2026 */
/* Paleta: Oro #D4AF37, Negro #0A0A0A, Dorado Oscuro #B8860B */

:root {
    --oro-principal: #D4AF37;
    --oro-claro: #F5D76E;
    --oro-oscuro: #B8860B;
    --negro-profundo: #0A0A0A;
    --negro-suave: #1A1A1A;
    --gris-elegante: #2D2D2D;
    --blanco-perla: #FAFAFA;
    --gradiente-oro: linear-gradient(135deg, #D4AF37 0%, #F5D76E 50%, #B8860B 100%);
    --sombra-oro: 0 4px 20px rgba(212, 175, 55, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    background-color: var(--negro-profundo);
    color: var(--blanco-perla);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', 'Times New Roman', serif;
    color: var(--oro-principal);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    font-family: 'Lora', 'Georgia', serif;
    margin-bottom: 1.25rem;
    color: #E8E8E8;
}

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

a:hover {
    color: var(--oro-claro);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

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

/* Cabecera */
.cabecera-dorada {
    background: linear-gradient(180deg, var(--negro-profundo) 0%, var(--negro-suave) 100%);
    border-bottom: 2px solid var(--oro-oscuro);
    padding: 1rem 0;
}

.nav-contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.marca-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.marca-logo img {
    height: 55px;
    width: auto;
}

.marca-nombre {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--oro-principal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-principal {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.menu-principal li a {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--blanco-perla);
    padding: 0.5rem 0;
    position: relative;
}

.menu-principal li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradiente-oro);
    transition: width 0.3s ease;
}

.menu-principal li a:hover::after,
.menu-principal li a.activo::after {
    width: 100%;
}

.boton-jugar {
    background: var(--gradiente-oro);
    color: var(--negro-profundo) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--sombra-oro);
}

.boton-jugar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

/* Menú Móvil */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--oro-principal);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.seccion-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-fondo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: -1;
}

.hero-contenido {
    max-width: 800px;
    padding: 2rem;
}

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

.hero-contenido p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #D0D0D0;
}

.hero-botones {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.boton-primario {
    background: var(--gradiente-oro);
    color: var(--negro-profundo);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--sombra-oro);
    transition: all 0.3s ease;
}

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

.boton-secundario {
    background: transparent;
    color: var(--oro-principal);
    padding: 1rem 2rem;
    border: 2px solid var(--oro-principal);
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.boton-secundario:hover {
    background: var(--oro-principal);
    color: var(--negro-profundo);
}

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

.seccion-oscura {
    background: var(--negro-suave);
}

.seccion-elegante {
    background: linear-gradient(180deg, var(--negro-profundo) 0%, var(--gris-elegante) 50%, var(--negro-profundo) 100%);
}

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

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

.titulo-seccion h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradiente-oro);
}

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

.tarjeta-juego {
    background: var(--negro-suave);
    border: 1px solid var(--oro-oscuro);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.tarjeta-juego img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tarjeta-contenido {
    padding: 1.5rem;
}

.tarjeta-contenido h3 {
    margin-bottom: 0.75rem;
}

.tarjeta-contenido p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #B0B0B0;
}

.tarjeta-cta {
    display: inline-block;
    background: var(--gradiente-oro);
    color: var(--negro-profundo);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.tarjeta-cta:hover {
    color: var(--negro-profundo);
}

/* Características */
.grid-caracteristicas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.caracteristica {
    text-align: center;
    padding: 2rem;
    background: var(--negro-suave);
    border: 1px solid var(--gris-elegante);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.caracteristica:hover {
    border-color: var(--oro-oscuro);
}

.caracteristica img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.caracteristica h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Bonos */
.bono-destacado {
    background: linear-gradient(135deg, var(--negro-suave) 0%, var(--gris-elegante) 100%);
    border: 2px solid var(--oro-principal);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bono-destacado::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotar 20s linear infinite;
}

@keyframes rotar {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bono-destacado h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.bono-destacado .monto {
    font-size: 4rem;
    color: var(--oro-claro);
    font-weight: 800;
    display: block;
    margin: 1rem 0;
}

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

.metodo-pago {
    background: var(--negro-suave);
    border: 1px solid var(--gris-elegante);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
}

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

.metodo-pago img {
    height: 50px;
    margin-bottom: 0.5rem;
}

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

.faq-item {
    background: var(--negro-suave);
    border: 1px solid var(--gris-elegante);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-pregunta {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    color: var(--oro-principal);
    transition: all 0.3s ease;
}

.faq-pregunta:hover {
    background: var(--gris-elegante);
}

.faq-pregunta::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--oro-principal);
    transition: transform 0.3s ease;
}

.faq-item.activo .faq-pregunta::after {
    transform: rotate(45deg);
}

.faq-respuesta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-respuesta-contenido {
    padding: 0 1.5rem 1.5rem;
    color: #C0C0C0;
}

.faq-item.activo .faq-respuesta {
    max-height: 500px;
}

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

.testimonio {
    background: var(--negro-suave);
    border: 1px solid var(--gris-elegante);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
}

.testimonio::before {
    content: '"';
    font-size: 4rem;
    color: var(--oro-oscuro);
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    opacity: 0.5;
    font-family: Georgia, serif;
}

.testimonio-texto {
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.testimonio-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonio-autor strong {
    color: var(--oro-principal);
    display: block;
}

.testimonio-autor span {
    color: #888;
    font-size: 0.9rem;
}

.estrellas {
    color: var(--oro-principal);
    margin-top: 0.25rem;
}

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

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

.pie-columna h4 {
    color: var(--oro-principal);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.pie-columna ul li {
    margin-bottom: 0.75rem;
}

.pie-columna ul li a {
    color: #B0B0B0;
    font-size: 0.95rem;
}

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

.pie-inferior {
    border-top: 1px solid var(--gris-elegante);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.pie-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pie-legal img {
    height: 50px;
}

.pie-copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Redes Sociales */
.redes-sociales {
    display: flex;
    gap: 1rem;
}

.redes-sociales a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--oro-oscuro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oro-principal);
    transition: all 0.3s ease;
}

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

/* Responsive */
@media (max-width: 992px) {
    .menu-principal {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--negro-suave);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-bottom: 2px solid var(--oro-oscuro);
    }

    .menu-principal.activo {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-contenido {
        text-align: center;
    }

    .hero-botones {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .seccion {
        padding: 3rem 0;
    }

    .bono-destacado {
        padding: 2rem 1rem;
    }

    .bono-destacado .monto {
        font-size: 2.5rem;
    }

    .pie-inferior {
        flex-direction: column;
        text-align: center;
    }
}

/* Animaciones de Entrada */
.animacion-entrada {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animacion-entrada.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Páginas Internas */
.pagina-interna .hero-interno {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--negro-profundo) 0%, var(--negro-suave) 100%);
    text-align: center;
}

.migas-pan {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.migas-pan a {
    color: #888;
}

.migas-pan span {
    color: var(--oro-principal);
}

.contenido-articulo {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.contenido-articulo h2 {
    margin-top: 2.5rem;
}

.contenido-articulo img {
    width: 100%;
    border-radius: 8px;
    margin: 2rem 0;
}

.contenido-articulo ul,
.contenido-articulo ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.contenido-articulo li {
    margin-bottom: 0.75rem;
    color: #D0D0D0;
}

/* Tabla de Información */
.tabla-info {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.tabla-info th,
.tabla-info td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gris-elegante);
}

.tabla-info th {
    background: var(--negro-suave);
    color: var(--oro-principal);
}

.tabla-info tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

/* CTA Final */
.cta-final {
    background: var(--gradiente-oro);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    margin: 3rem 0;
}

.cta-final h2 {
    color: var(--negro-profundo);
}

.cta-final p {
    color: var(--negro-profundo);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-final .boton-primario {
    background: var(--negro-profundo);
    color: var(--oro-principal);
}

.cta-final .boton-primario:hover {
    background: var(--negro-suave);
}
