/* =========================================
   Paleta de Colores - Mai Kids
   ========================================= */
:root {
    --color-fondo: #FDFBF7;        /* Blanco Lino */
    --color-texto-oscuro: #6E7B6C; /* Verde Oliva Oscuro */
    --color-verde-musgo: #8EA08A;  /* Verde Musgo Suave */
    --color-terracota: #D59876;    /* Terracota / Salmón */
    --color-mostaza: #EAB65E;      /* Mostaza / Amarillo */
}

/* =========================================
   Reseteo básico y Tipografía
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-fondo);
    color: var(--color-texto-oscuro);
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* =========================================
   Contenedor Principal
   ========================================= */
.landing-container {
    max-width: 800px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* =========================================
   Logo
   ========================================= */
.brand-logo {
    max-width: 250px;
    height: auto;
    margin: 0 auto;
}

/* =========================================
   Sección Hero (Mensaje Principal)
   ========================================= */
.hero-section h1 {
    font-size: 2.5rem;
    color: var(--color-verde-musgo);
    margin-bottom: 10px;
}

.hero-section .subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-texto-oscuro);
    margin-bottom: 30px;
}

.brand-values {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.value {
    background-color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    color: var(--color-texto-oscuro);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   Sección CTA y Formulario
   ========================================= */
.cta-section {
    background-color: rgba(142, 160, 138, 0.1); /* Verde musgo con opacidad */
    padding: 40px 20px;
    border-radius: 15px;
}

.cta-section h2 {
    color: var(--color-terracota);
    margin-bottom: 10px;
}

.cta-section p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px 20px;
    border: 2px solid var(--color-verde-musgo);
    border-radius: 25px;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    outline: none;
    color: var(--color-texto-oscuro);
}

.newsletter-form input:focus {
    border-color: var(--color-mostaza);
}

.newsletter-form button {
    background-color: var(--color-mostaza);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: inherit;
}

.newsletter-form button:hover {
    background-color: var(--color-terracota);
    transform: translateY(-2px);
}

/* =========================================
   Pie de página
   ========================================= */
footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #999;
}

/* =========================================
   Responsividad (Móviles)
   ========================================= */
@media (max-width: 600px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form button {
        width: 100%;
        max-width: 300px;
    }
}