/* Bodog Mexico - Tema Hogar Mexicano */
/* Paleta: Terracota #C4704F, Crema #F5E6D3, Dorado #D4A574, Verde Cactus #5D7A5D, Marrón #8B6914 */

:root {
    --terracota: #C4704F;
    --terracota-oscuro: #A85A3D;
    --crema: #F5E6D3;
    --crema-claro: #FDF8F3;
    --dorado: #D4A574;
    --dorado-brillante: #E8C49A;
    --verde-cactus: #5D7A5D;
    --marron: #8B6914;
    --texto-oscuro: #3D2B1F;
    --texto-claro: #6B5344;
    --sombra: rgba(61, 43, 31, 0.15);
}

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

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

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    background-color: var(--crema-claro);
    color: var(--texto-oscuro);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: var(--terracota-oscuro);
    line-height: 1.3;
}

h1 { font-size: 2.8rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.6rem; margin-bottom: 1rem; }

p { margin-bottom: 1rem; }

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

a:hover { color: var(--dorado); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Navegación */
.navegacion-principal {
    background: linear-gradient(135deg, var(--crema) 0%, var(--crema-claro) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 15px var(--sombra);
    position: relative;
    z-index: 100;
}

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

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

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

.logo-marca span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracota-oscuro);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-navegacion {
    display: flex;
    list-style: none;
    gap: 0.3rem;
}

.menu-navegacion li a {
    display: block;
    padding: 0.7rem 1.1rem;
    color: var(--texto-oscuro);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.menu-navegacion li a:hover {
    background-color: var(--terracota);
    color: white;
}

.boton-cta {
    background: linear-gradient(135deg, var(--terracota) 0%, var(--terracota-oscuro) 100%);
    color: white !important;
    padding: 0.8rem 1.8rem !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(196, 112, 79, 0.4);
    transition: all 0.3s ease !important;
}

.boton-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 112, 79, 0.5);
    background: linear-gradient(135deg, var(--dorado) 0%, var(--terracota) 100%) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

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

/* Hero Section */
.seccion-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--crema) 0%, var(--crema-claro) 50%, var(--dorado-brillante) 100%);
    overflow: hidden;
}

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

.hero-fondo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-contenido {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-texto h1 {
    font-size: 3.2rem;
    color: var(--terracota-oscuro);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-texto h1 span {
    color: var(--dorado);
    display: block;
}

.hero-texto p {
    font-size: 1.2rem;
    color: var(--texto-claro);
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.boton-primario {
    display: inline-block;
    background: linear-gradient(135deg, var(--terracota) 0%, var(--terracota-oscuro) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(196, 112, 79, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.boton-primario:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 112, 79, 0.5);
    color: white;
}

.boton-secundario {
    display: inline-block;
    background: transparent;
    color: var(--terracota);
    padding: 1rem 2.5rem;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--terracota);
    transition: all 0.3s ease;
}

.boton-secundario:hover {
    background: var(--terracota);
    color: white;
}

.hero-imagen {
    position: relative;
}

.hero-imagen img {
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--sombra);
}

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

.seccion-alterna {
    background: linear-gradient(180deg, var(--crema) 0%, var(--crema-claro) 100%);
}

.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: 4px;
    background: linear-gradient(90deg, var(--terracota), var(--dorado));
    border-radius: 2px;
}

.seccion-titulo p {
    color: var(--texto-claro);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1rem auto 0;
}

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

.juego-tarjeta {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--sombra);
    transition: all 0.4s ease;
    position: relative;
}

.juego-tarjeta:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(196, 112, 79, 0.25);
}

.juego-imagen {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.juego-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.juego-tarjeta:hover .juego-imagen img {
    transform: scale(1.1);
}

.juego-etiqueta {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--dorado);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.juego-contenido {
    padding: 1.5rem;
}

.juego-contenido h3 {
    color: var(--terracota-oscuro);
    margin-bottom: 0.8rem;
}

.juego-contenido p {
    color: var(--texto-claro);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.juego-boton {
    display: inline-block;
    background: linear-gradient(135deg, var(--verde-cactus) 0%, #4A6B4A 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.juego-boton:hover {
    background: linear-gradient(135deg, var(--terracota) 0%, var(--terracota-oscuro) 100%);
    color: white;
}

/* Sección Autor */
.autor-seccion {
    background: linear-gradient(135deg, var(--terracota) 0%, var(--terracota-oscuro) 100%);
    color: white;
    padding: 4rem 0;
}

.autor-contenido {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.autor-imagen img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 5px solid var(--dorado);
    object-fit: cover;
}

.autor-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.autor-info .cargo {
    color: var(--dorado-brillante);
    font-weight: 600;
    margin-bottom: 1rem;
}

.autor-info p {
    opacity: 0.95;
    line-height: 1.8;
}

/* Promociones */
.promociones-banner {
    background: linear-gradient(135deg, var(--dorado) 0%, var(--terracota) 100%);
    border-radius: 25px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

.promociones-texto h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.promociones-texto p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.promociones-imagen img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Métodos de Pago */
.pagos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.pago-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 25px var(--sombra);
    transition: all 0.3s ease;
}

.pago-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(196, 112, 79, 0.2);
}

.pago-item img {
    height: 60px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.pago-item h4 {
    color: var(--terracota-oscuro);
    margin-bottom: 0.5rem;
}

.pago-item p {
    color: var(--texto-claro);
    font-size: 0.9rem;
}

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

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 15px var(--sombra);
    overflow: hidden;
}

.faq-pregunta {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--terracota-oscuro);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.faq-pregunta::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--terracota);
    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 2rem 1.5rem;
    color: var(--texto-claro);
    line-height: 1.8;
}

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

/* Reseñas */
.resenas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.resena-tarjeta {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px var(--sombra);
    position: relative;
}

.resena-tarjeta::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    color: var(--dorado);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.resena-estrellas {
    color: var(--dorado);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.resena-texto {
    color: var(--texto-claro);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.resena-autor-inicial {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--terracota) 0%, var(--dorado) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
}

.resena-autor-info h4 {
    color: var(--terracota-oscuro);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.resena-autor-info span {
    color: var(--texto-claro);
    font-size: 0.85rem;
}

/* Juego Responsable */
.responsable-contenido {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.responsable-texto h3 {
    margin-bottom: 1.5rem;
}

.responsable-lista {
    list-style: none;
}

.responsable-lista li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--texto-claro);
}

.responsable-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--verde-cactus);
    font-weight: bold;
}

.responsable-imagen img {
    border-radius: 20px;
    box-shadow: 0 15px 45px var(--sombra);
}

/* Footer */
.pie-pagina {
    background: linear-gradient(135deg, var(--texto-oscuro) 0%, #2A1F17 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-marca h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-marca p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-columna h4 {
    color: var(--dorado);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-columna ul li {
    margin-bottom: 0.8rem;
}

.footer-columna ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.footer-columna ul li a:hover {
    color: var(--dorado);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--terracota);
    transform: translateY(-3px);
}

.footer-inferior {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-inferior p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-iconos {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-iconos img {
    height: 35px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-iconos img:hover {
    opacity: 1;
}

.edad-restriccion {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dorado);
    font-weight: 600;
}

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

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

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

.breadcrumb-lista li:last-child::after {
    content: '';
}

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

.breadcrumb-lista span {
    color: var(--texto-claro);
}

/* Páginas Internas */
.pagina-interna {
    padding: 4rem 0;
}

.contenido-juego {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contenido-principal h1 {
    margin-bottom: 2rem;
}

.contenido-principal img {
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 10px 40px var(--sombra);
}

.sidebar-juego {
    position: sticky;
    top: 2rem;
}

.info-rapida {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px var(--sombra);
}

.info-rapida h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--crema);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item span:first-child {
    color: var(--texto-claro);
}

.info-item span:last-child {
    font-weight: 600;
    color: var(--terracota-oscuro);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-contenido {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-texto h1 {
        font-size: 2.5rem;
    }
    
    .hero-botones {
        justify-content: center;
    }
    
    .hero-imagen {
        order: -1;
    }
    
    .autor-contenido {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .promociones-banner {
        grid-template-columns: 1fr;
    }
    
    .responsable-contenido {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contenido-juego {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .menu-navegacion {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--crema);
        flex-direction: column;
        padding: 1rem;
        display: none;
        box-shadow: 0 10px 30px var(--sombra);
    }
    
    .menu-navegacion.activo {
        display: flex;
    }
    
    .menu-navegacion li a {
        padding: 1rem;
        text-align: center;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    
    .hero-texto h1 {
        font-size: 2rem;
    }
    
    .seccion {
        padding: 3rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-inferior {
        flex-direction: column;
        text-align: center;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animado {
    animation: fadeInUp 0.6s ease forwards;
}

/* Utilidades */
.texto-centro { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
