/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(to bottom, #fef3c7, #ffffff);
    min-height: 100vh;
}

.container {
    max-width: 100%;
    min-height: 100vh;
}

/* Header con espacio para logo */
.header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem 1rem;
}

.header-image {
    max-width: 28rem;
    margin: 0 auto;
    height: 6rem;
    background: linear-gradient(to right, #fde68a, #fed7aa);
    border-radius: 0.5rem;
    border: 2px solid #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Texto alternativo si no hay imagen */
.header-image .placeholder-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #92400e;
}

/* Contenido principal */
.main-content {
    max-width: 28rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Botones del menú */
.menu-button {
    display: block;
    width: 100%;
    height: 10rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
}

.menu-button:hover {
    transform: scale(1.05);
}

.menu-button:active {
    transform: scale(0.98);
}

/* Botón Navidad */
.navidad-button {
    background: linear-gradient(to right, #fde68a, #fed7aa, #fde68a);
}

.navidad-button::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 5l2 5h5l-4 3 2 5-5-3-5 3 2-5-4-3h5z' fill='%23f59e0b'/%3E%3C/svg%3E");
}

.button-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
}

.button-subtitle {
    font-size: 0.875rem;
    color: #92400e;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.button-title {
    font-size: 2rem;
    font-weight: bold;
    color: #78350f;
}

/* Estilos para botones adicionales */
.infantil-button {
    background: linear-gradient(to right, #065f46, #047857);
}

.infantil-button .button-subtitle,
.infantil-button .button-title {
    color: #d1fae5;
}

/* Responsivo para pantallas muy pequeñas */
@media (max-width: 320px) {
    .button-title {
        font-size: 1.5rem;
    }

    .header-image .placeholder-text {
        font-size: 1.25rem;
    }
}