/* Configuración General */
body {
    font-family: 'Quicksand', sans-serif;
    background-color: #f0f9ff;
    margin: 0;
    padding: 0;
    color: #333;
    text-align: center;
}

h1 {
    font-family: 'Luckiest Guy', cursive;
    color: #ff6b6b;
    font-size: 3rem;
    margin-top: 30px;
    text-shadow: 2px 2px #fff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Sección de Video */
.video-container {
    background: #fff;
    border: 8px solid #ffd93d; /* Amarillo vibrante */
    border-radius: 30px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.video-placeholder {
    background: #2d3436;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
}

.play-button {
    font-size: 80px;
    color: #ffd93d;
    transition: transform 0.3s;
}

.video-placeholder:hover .play-button {
    transform: scale(1.2);
}

/* Cuadrícula de Categorías */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.card {
    text-decoration: none;
    padding: 40px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.card h2 {
    font-family: 'Luckiest Guy', cursive;
    margin: 10px 0;
}

/* Estilos específicos por idioma */
.card-es {
    background: #e3f9e5; /* Verde suave */
    border: 5px solid #4ade80;
    color: #065f46;
}

.card-en {
    background: #fff9db; /* Amarillo suave para tu hija menor */
    border: 5px solid #facc15;
    color: #854d0e;
}

.btn-aventura {
    background: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
    box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}

footer {
    margin-top: 50px;
    padding: 20px;
    font-size: 0.9rem;
    color: #777;
}

