/* ============================
   Contacto Page Styles
   ============================ */

/* Contact Info Section */
.contact-info {
    padding-right: 40px;
}

.contact-section {
    margin-bottom: 24px;
}

.contact-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-item a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #000;
    flex-shrink: 0;
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
}

/* Form Styles */
#contacto .form-label {
    font-size: 16px;
    font-weight: 400;
    color: #111010;
    margin-bottom: 8px;
}

#contacto .form-control {
    border: 1px solid #A7A7A7;
    border-radius: 8px;
    min-height: 45px;
    font-size: 14px;
}

#contacto .form-control:focus {
    border-color: #3F649C;
    box-shadow: 0 0 0 2px rgba(0, 67, 186, 0.1);
}

#contacto textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-enviar {
    background-color: #3F649C;
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    padding: 12px 32px;
    border: none;
    min-height: 41px;
}

.btn-enviar:hover {
    background-color: #3F649C;
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: 32px;
    }
}