body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFBF9; /* Fondo blanco cálido consistente */
}

/* --- ESTILOS DE NAVEGACIÓN Y COLORES BASE --- */
.hover\:text-accent-hover:hover {
    color: #D9AAB7;
}
.bg-accent {
    background-color: #E6C7C7;
}

/* --- ESTILOS DEL FORMULARIO DE CONTACTO (DISEÑO SIMPLE) --- */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem; /* 14px */
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background-color: #f9fafb;
    color: #111827;
    transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-input:focus {
    outline: none;
    border-color: #D9AAB7;
    box-shadow: 0 0 0 2px rgba(217, 170, 183, 0.4);
}

textarea.form-input {
    resize: vertical;
}

.submit-btn {
    background-color: #D9AAB7;
    color: white;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #d19ca9;
    transform: translateY(-2px);
}

/* --- ESTILOS PARA MENSAJES DE ESTADO --- */
#form-status {
    transition: opacity 0.3s ease-in-out;
}
.form-status-success {
    color: #16a34a; /* Verde */
}
.form-status-error {
    color: #dc2626; /* Rojo */
}


/* --- ESTILOS PARA EL MENÚ MÓVIL (Pantalla Completa) --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 251, 249, 0.98);
    backdrop-filter: blur(5px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: #374151;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.open .mobile-nav a {
    opacity: 1;
    transform: translateY(0);
}

/* Retraso escalonado para los enlaces del menú */
.mobile-menu.open .mobile-nav a:nth-child(1) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav a:nth-child(2) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-nav a:nth-child(3) { transition-delay: 0.4s; }
.mobile-menu.open .mobile-nav a:nth-child(4) { transition-delay: 0.5s; }

.contact-btn-mobile {
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background-color: #D9AAB7;
    color: white;
    border-radius: 9999px;
}


/* --- ANIMACIONES DE ENTRADA --- */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-nav > a {
    opacity: 0;
    animation: fade-in 0.6s ease-out forwards;
}

.animate-nav > a:nth-child(1) { animation-delay: 0.2s; }
.animate-nav > a:nth-child(2) { animation-delay: 0.3s; }
.animate-nav > a:nth-child(3) { animation-delay: 0.4s; }
.animate-nav > a:nth-child(4) { animation-delay: 0.5s; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

