/* ==========================================================
   SECCIÓN DE CONTACTO PROFESIONAL - BABYCUTE (CLEAN DESIGN)
   ========================================================== */

.contacto-section {
    position: relative;
    padding: 100px 8%;
    background-color: var(--white);
    overflow: hidden;
    scroll-margin-top: 80px;
}

/* Círculos orgánicos sutiles de fondo con los colores de tu marca */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 1;
    opacity: 0.35;
}
.circle-1 {
    top: -5%;
    right: -5%;
    width: 380px;
    height: 380px;
    background-color: var(--primary-color); /* Rosa pastel */
}
.circle-2 {
    bottom: -10%;
    left: -5%;
    width: 450px;
    height: 450px;
    background-color: var(--secondary-color); /* Celeste suave */
}

.contacto-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* --- Columna Información Izquierda --- */
.contacto-info .contacto-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #db8a97; /* Variación legible de tu rosa */
    margin-bottom: 18px;
    background: #fff0f2;
    padding: 6px 18px;
    border-radius: 50px;
}

.contacto-info h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.contacto-info p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 45px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon-box {
    width: 52px;
    height: 52px;
    background: var(--bg-light);
    color: #6fbab8; /* Variación legible de tu celeste */
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border: 1px solid rgba(160, 231, 229, 0.2);
}

.info-text h4 {
    font-size: 16px;
    color: #34495e;
    font-weight: 600;
    margin-bottom: 3px;
}

.info-text p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
}

/* --- Tarjeta del Formulario (Premium Clean) --- */
.contacto-form-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03), 0 5px 15px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 22px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 0;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: #475569;
}

/* Inputs con Iconos Integrados */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 18px;
    color: #cbd5e1;
    font-size: 15px;
    transition: color 0.3s ease;
    pointer-events: none;
}

.textarea-icon {
    top: 18px;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    font-size: 15px;
    color: #334155;
    background-color: var(--bg-light);
    transition: all 0.3s ease;
    outline: none;
}

.input-wrapper textarea {
    resize: none;
    line-height: 1.6;
}

/* Efecto Focus Pastel */
.input-wrapper input:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 182, 193, 0.25);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper textarea:focus + .input-icon {
    color: var(--primary-color);
}

/* --- Botón de Envió WhatsApp Profesional --- */
.btn-submit-whatsapp {
    background-color: #25d366; /* Verde original para transmitir confianza de app */
    color: var(--white);
    border: none;
    padding: 12px 12px 12px 12px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.15);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-icon-circle {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Animaciones controladas del botón */
.btn-submit-whatsapp:hover {
    background-color: #1ebd52;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.25);
}

.btn-submit-whatsapp:hover .btn-icon-circle {
    transform: scale(1.05) rotate(15deg);
}

.btn-submit-whatsapp:active {
    transform: translateY(0);
}

/* --- Responsivo --- */
@media (max-width: 992px) {
    .contacto-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contacto-info {
        text-align: center;
    }
    .info-items {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .contacto-section {
        padding: 60px 5%;
    }
    .contacto-info h2 {
        font-size: 30px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contacto-form-wrapper {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .info-items {
        flex-direction: column;
        align-items: flex-start;
        max-width: 290px;
        margin: 0 auto;
    }
}