/* --- CT-CONTACTPAGE.CSS --- */

.ct-contact-wrapper {
    background: #fff !important;

    padding: 0px !important;
    margin: 20px 0 !important;
	margin-left: 15px !important;
}

.ct-contact-header {
    border-bottom: 5px solid #2A76EC !important; /* Azul Goal */
    margin-bottom: 30px !important;
    padding-bottom: 15px !important;
}

.ct-contact-header h2 {
    font-size: 28px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    color: #222 !important;
}

.ct-contact-header p {
    font-size: 14px !important;
    color: #666 !important;
    margin-top: 10px !important;
}

/* --- FORMULARIO --- */
.ct-form-row {
    display: flex !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
}

.ct-form-group {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 20px !important;
}

.ct-form-group label {
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 8px !important;
    color: #444 !important;
}

.ct-contact-form input, 
.ct-contact-form textarea {
    border: 2px solid #333 !important;
    border-radius: 0 !important; /* CERO redondeo */
    padding: 12px 15px !important;
    font-size: 15px !important;
    font-family: inherit !important;
    background: #fdfdfd !important;
}

.ct-contact-form input:focus, 
.ct-contact-form textarea:focus {
    border-color: #2A76EC !important;
    outline: none !important;
    background: #fff !important;
}

/* --- BOTÓN --- */
.ct-form-actions {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: 10px !important;
}

.ct-btn-send {
    background: #2A76EC !important;
    color: #fff !important;
    border: none !important;
    padding: 15px 40px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: transform 0.1s ease !important;
}

.ct-btn-send:hover {
    background: #1a5bbd !important;
}

.ct-btn-send:active {
    transform: scale(0.98) !important;
}

/* --- ALERTAS --- */
.ct-alert-success {
    background: #28a745 !important;
    color: #fff !important;
    padding: 15px !important;
    margin-bottom: 20px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
}