/* Estilos generales - Contacto */

.contacto-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Poppins", Roboto, sans-serif;
}

#contacto-call{
    
     font-family:"Poppins";
 font-size:16px;
 font-weight:400;
     color:#1B1B1B;
     text-align:center;
     
    
}
.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #F8F9FA;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contacto-form-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.5px;
}

.contacto-form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.contacto-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.contacto-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contacto-row-1 {
    display: grid;
    grid-template-columns: 1fr;
}

.contacto-button-row {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.contacto-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contacto-label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contacto-label i {
    font-size: 16px;
    width: 20px;
}

.contacto-form-input,
.contacto-form-select,
.contacto-form-textarea {
    width: 100%;
    padding: 0;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
}

.contacto-form-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

.contacto-form-input:focus,
.contacto-form-select:focus,
.contacto-form-textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.contacto-form-select {
    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='currentColor' 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 15px center;
    background-size: 15px;
}

.contacto-form__button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: auto;
    min-width: 400px;
    height:40px;
}

.contacto-form__button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.contacto-form__button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.contacto-required-message {
 
    align-items: center;
text-align: center;
    gap: 8px;
  
    font-size: 9.57px;
color: #6A7282;

font-family: "Inter";

font-style: normal;
font-weight: 400;
line-height: 19.114px;
}

.contacto-required-message i {
    color: #000;
    font-size: 9.57px;
}

.contacto-legal-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
    font-size: 12px;
    color: #999;
}

.contacto-legal-text i {
    color: #000;
    font-size: 14px;
}

.contacto-legal-text p {
    margin: 0;
}

.contacto-form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 12px;
    display: none;
    font-size: 14px;
    text-align: center;
}

.contacto-form-message.success {
    display: block;
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.contacto-form-message.error {
    display: block;
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Placeholders */
.contacto-form-input::placeholder,
.contacto-form-select::placeholder,
.contacto-form-textarea::placeholder {
    font-weight: 400 !important;
    opacity: 0.7;
    color: #717182;
    font-family: -apple-system, BlinkMacSystemFont, "Poppins", Roboto, sans-serif;
    letter-spacing: normal;
}

.contacto-form-input::-webkit-input-placeholder,
.contacto-form-select::-webkit-input-placeholder,
.contacto-form-textarea::-webkit-input-placeholder {
    font-weight: 300 !important;
    opacity: 0.7;
}

.contacto-form-input::-moz-placeholder,
.contacto-form-select::-moz-placeholder,
.contacto-form-textarea::-moz-placeholder {
    font-weight: 300 !important;
    opacity: 0.7;
}

.contacto-form-input:-ms-input-placeholder,
.contacto-form-select:-ms-input-placeholder,
.contacto-form-textarea:-ms-input-placeholder {
    font-weight: 300 !important;
    opacity: 0.7;
}

.contacto-form-input,
.contacto-form-select,
.contacto-form-textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 1px 15px;
    border-width: 1px;
}

.contacto-form-input::placeholder,
.contacto-form-textarea::placeholder {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300 !important;
    opacity: 0.7;
    color: #999;
}

.contacto-form-select option:first-child {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300 !important;
    color: #999;
}

.contacto-form-select option {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
}

.contacto-form-input::-webkit-input-placeholder,
.contacto-form-textarea::-webkit-input-placeholder {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300 !important;
    opacity: 0.7;
}

.contacto-form-input::-moz-placeholder,
.contacto-form-textarea::-moz-placeholder {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300 !important;
    opacity: 0.7;
}

.contacto-form-input:focus::placeholder,
.contacto-form-textarea:focus::placeholder {
    opacity: 0.4;
    transition: all 0.3s ease;
}

.contacto-form-select:invalid,
.contacto-form-select option[value=""] {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300 !important;
    color: #999;
}

.contacto-form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    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='%23666' stroke-width='1.5' 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 12px center;
    background-size: 14px;
    padding-right: 35px;
}

/* Responsive */
@media (max-width: 768px) {
    .contacto-wrapper {
        padding: 20px;
    }
    
    .contacto-form {
        padding: 25px;
    }
    
    .contacto-row-3,
    .contacto-row-2 {
        grid-template-columns: 1fr;
    }
    
    .contacto-form-row {
        gap: 15px;
    }
    
    .contacto-form-title {
        font-size: 24px;
    }
    
    .contacto-form__button {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .contacto-form {
        padding: 20px;
    }
    
    .contacto-form-input,
    .contacto-form-select,
    .contacto-form-textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
}