/* Estilos generales - Contacto Honda */
.ch-wrapper {
    max-width: 1060px;
    margin: 0 auto;
    padding: 40px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Poppins", Roboto, sans-serif;
    background: #EFEFEF;
 
}

/* Importar fuente Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.ch-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: #EFEFEF;

    padding: 48px;

}

/* Título principal */
.ch-form-title {
    font-size: 24px;
    font-weight: 400;
    color: #cc0000;
    margin-bottom: 8px;
    text-align: left;
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
}

/* Subtítulo de teléfono */
.ch-contact-phone {
    text-align: left;

    font-size: 16px;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.ch-contact-phone a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.ch-contact-phone a:hover {
    text-decoration: underline;
}

/* CONTENEDOR PRINCIPAL DE 2 COLUMNAS */
.ch-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* COLUMNA IZQUIERDA - Todos los campos en UNA SOLA COLUMNA */
.ch-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* COLUMNA DERECHA - Solo textarea */
.ch-right-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Cada campo individual ocupa toda la fila */
.ch-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

/* Inputs y selects - con padding y márgenes */
.ch-form-input,
.ch-form-select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;

    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-sizing: border-box;
    color: #1a1a1a;
    margin-bottom: 4px;
}

/* Textarea - ocupa toda la altura disponible */
.ch-form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 0px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-sizing: border-box;
    color: #1a1a1a;
    resize: vertical;
    min-height: 380px;
}


.ch-right-column .ch-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ch-right-column .ch-form-textarea {
    flex: 1;
}

.ch-form-input:focus,
.ch-form-select:focus,
.ch-form-textarea:focus {
    outline: none;
    border-color: #ea0029;
    box-shadow: 0 0 0 3px rgba(234, 0, 41, 0.1);
}

/* Placeholders */
.ch-form-input::placeholder,
.ch-form-textarea::placeholder {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #94a3b8;
    opacity: 0.8;
}

/* Select específico */
.ch-form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
    height: 30px;
}

.ch-form-select option:first-child {
    color: #94a3b8;
}

.ch-form-select option {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
}


.ch-button-container {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

/* Botón - rojo */
.ch-form__button {
    background-color: #cc0000;
    color: #ffffff;
    border: none;
    padding: 1px 48px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
     min-width: 450px;
     
         height: 30px;
}

.ch-form__button:hover {
    background-color: #c00022;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(234, 0, 41, 0.3);
}

/* Mensaje de campos obligatorios */
.ch-required-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 12px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: #6A7282;
}

.ch-required-message i {
    color: #ea0029;
    font-size: 12px;
}

/* Texto legal */
.ch-legal-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 12px;
    color: #94a3b8;
    font-family: 'Inter', sans-serif;
}

.ch-legal-text i {
    color: #ea0029;
    font-size: 14px;
}

.ch-legal-text p {
    margin: 0;
}

/* Mensajes de éxito/error */
.ch-form-message {
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: 12px;
    display: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-align: center;
}

.ch-form-message.success {
    display: block;
    background-color: #e8f5e9;
    color: #2c5f2d;
    border: 1px solid #c8e6c9;
}

.ch-form-message.error {
    display: block;
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Responsive */
@media (max-width: 768px) {
    .ch-wrapper {
        padding: 20px;
    }
    
    .ch-form {
        padding: 24px;
    }
    
    .ch-two-columns {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .ch-form-title {
        font-size: 24px;
    }
    
    .ch-form-textarea {
        min-height: 200px;
    }
    
    .ch-button-container {
        margin-top: 24px;
    }
    
    .ch-form__button {
        width: 100%;
        min-width: auto;
        padding: 12px 24px;
    }
    
    .ch-form-input,
    .ch-form-select {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .ch-form {
        padding: 20px;
    }
    
    .ch-form-input,
    .ch-form-select,
    .ch-form-textarea {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .ch-form-title {
        font-size: 20px;
    }
}















.ch-form-select {
    width: 100%;

    border: 1.5px solid #e2e8f0;

    padding: 1px 18px !important;



    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    background-color: #ffffff;
    box-sizing: border-box;
    color: #1a1a1a;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
}


.ch-form-select option:first-child {
    color: #94a3b8;
    font-weight: 400;
}


.ch-form-select option {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    padding: 12px;
    background-color: #ffffff;
}


.ch-form-select:valid {
    color: #1a1a1a;
}


.ch-form-select:invalid {
    color: #94a3b8;
}

/* Focus del select */
.ch-form-select:focus {
    outline: none;
    border-color: #ea0029;
    box-shadow: 0 0 0 3px rgba(234, 0, 41, 0.1);
}


.ch-form-select:hover {
    border-color: #cbd5e1;
}

/* Select cuando está deshabilitado */
.ch-form-select:disabled {
    background-color: #f8fafc;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Para dispositivos móviles */
@media (max-width: 768px) {
    .ch-form-select {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .ch-form-select option {
        font-size: 14px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .ch-form-select {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .ch-form-select option {
        font-size: 13px;
        padding: 8px;
    }
}





