/*
Theme Name: NaranjaLab Child
Theme URI: https://naranjalab.com
Description: Tema hijo personalizado para NaranjaLab
Author: Tu Nombre
Author URI: https://naranjalab.com
Template: bizboost
Version: 1.0.0
Text Domain: naranjalab-child
*/

/* --- ESTILOS GENERALES --- */
.game-hero, .learning-benefits, .screenshots, .final-cta {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- SECCIÓN HERO --- */
.game-hero {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    gap: 2rem;
    align-items: center;
    text-align: center;
    min-height: 80vh;
}
@media (min-width: 768px) {
    .game-hero {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        gap: 4rem;
    }
}
.game-hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 16px;
    max-width: 90%;
    margin: 0 auto;
}
.game-hero-content h1 {
    color: #FF8A00;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}
.game-hero-content .tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
}
@media (max-width: 767px) {
    .game-hero-content {
        max-width: 100%;
        border-radius: 0;
        padding: 1.5rem;
    }
}

/* Contenedor de Botones */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}
@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}
@media (min-width: 768px) {
    .cta-buttons {
        justify-content: flex-start;
    }
}
.cta-button {
    display: inline-block;
    transition: transform 0.3s ease;
}
.cta-button:hover {
    transform: scale(1.05);
}

/* Media: Video e Imagen */
.game-hero-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.hero-video-desktop {
    width: 100%;
    display: none;
    border-radius: 16px;
}
.hero-image-mobile {
    width: 100%;
    display: block;
    border-radius: 16px;
}
@media (min-width: 768px) {
    .hero-video-desktop {
        display: block;
    }
    .hero-image-mobile {
        display: none;
    }
}

/* --- SECCIÓN: BENEFICIOS DE APRENDIZAJE --- */
.learning-benefits {
    text-align: center;
    background-color: #f9f9f9;
    padding: 4rem 1rem;
}
.learning-benefits h2 {
    margin-bottom: 1rem;
}
.benefits-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    gap: 2rem;
    margin-top: 3rem;
}
@media (min-width: 768px) {
    .benefits-grid {
        -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: repeat(3, 1fr);
    }
}
.benefit-item {
    padding: 2rem 1.5rem;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.benefit-item:hover {
    transform: translateY(-5px);
}
.benefit-item img {
    margin-bottom: 1rem;
}
.benefit-item h3 {
    color: #333;
    margin-bottom: 1rem;
}
.benefit-item p {
    color: #666;
}

/* --- SECCIÓN: GALERÍA DE SCREENSHOTS --- */
.screenshots {
    padding: 4rem 1rem;
    text-align: center;
}
.screenshots h2 {
    margin-bottom: 2rem;
}
.screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
@media (min-width: 768px) {
    .screenshot-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}
.screenshot-gallery img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: 10px solid #222;
    border-top-width: 40px;
    border-bottom-width: 40px;
}
.screenshot-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* --- SECCIÓN FINAL CTA --- */
.final-cta {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8A00 100%);
    color: white;
    border-radius: 16px;
    margin: 2rem auto;
}
.final-cta h2 {
    margin-bottom: 1rem;
}
.final-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}
.final-cta .cta-buttons {
    justify-content: center;
}
.final-cta .cta-button {
    background: #fff;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.final-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}