/* Sección de Contacto */
.contact-section {
    padding: 10px 5% 30px 5%;
    text-align: left; /* Alineación del título a la izquierda */
}

.contact-title {
    font-family: 'MuseoSansRounded700', sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.contact-subtitle {
    font-family: 'MuseoSansRounded300', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    max-width: 600px; /* Limita el ancho del texto descriptivo */
}

/* Grid de Contacto */
.contact-content-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: 50px;
    align-items: start;
}

/* Formulario */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fdfdfd;
    font-family: 'MuseoSansRounded300', sans-serif;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--green-brand);
    box-shadow: 0 0 5px rgba(45, 90, 58, 0.1);
}

.input-group textarea {
    resize: none; /* Evita que el usuario cambie el tamaño */
}

.form-actions {
    margin-top: 10px;
}

/* Botón de envío (reutilizando estilos anteriores) */
.contact-form .btn-buy {
    width: 100%; /* Botón a ancho completo del formulario */
    font-size: 16px;
    padding: 15px;
}

/* Enlace de WhatsApp debajo del formulario */
.whatsapp-contact-link {
    margin-top: 25px;
    text-align: center;
}

.whatsapp-contact-link a {
    text-decoration: none;
    color: #666;
    font-family: 'MuseoSansRounded300', sans-serif;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.whatsapp-contact-link a:hover {
    color: var(--green-brand);
}

.whatsapp-contact-link i {
    font-size: 24px;
    color: #25d366; /* Color oficial de WhatsApp */
}

.whatsapp-contact-link strong {
    font-family: 'MuseoSansRounded700';
    color: #333;
}

.wa-container {
    display: flex;
    align-items: center; /* Centra verticalmente el icono con el bloque de texto */
    justify-content: flex-start;
    gap: 15px; /* Espacio entre el icono y el texto */
    text-decoration: none;
    color: #555;
    font-family: 'MuseoSansRounded300', sans-serif;
}

/* El ajuste clave para el tamaño */
.wa-big-icon {
    font-size: 38px; /* Tamaño aumentado para cumplir con el prototipo */
    color: #25d366; /* Verde oficial de WhatsApp */
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.1)); /* Sutil profundidad */
}

.wa-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}

.wa-text span {
    font-size: 14px;
}

.wa-text strong {
    font-size: 16px;
    font-family: 'MuseoSansRounded700', sans-serif;
    color: #333;
}

/* Efecto hover para interactividad */
.wa-container:hover .wa-big-icon {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}


/* Columna del Mapa */
.contact-map-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.address-box {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.address-box i {
    font-size: 18px;
    color: var(--green-brand);
}

.address-box p {
    font-family: 'MuseoSansRounded300', sans-serif;
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .contact-content-grid {
        grid-template-columns: 1fr; /* Una columna en móvil */
        gap: 30px;
    }
    
    .map-wrapper {
        height: 250px;
    }
}
