/* Cotizador Honda Styles - Prefijo cot- */
.cot-cotizador-container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background-color: #f2f2f3;
    padding: 50px 20px;
}









@media only screen and (min-width: 1200px) {
    .container, div.container, .et-container, .breadcrumb-trail .page-heading {
        max-width: 1092px!important;
    }
}
.vigencia-cotizador{
    font-family:"Poppins";
    font-size:11px!important;
    color:#000;
    font-weight:400;
}

.cot-extra-legal p {
    
  font-family:"Poppins";
    font-size:11px!important;
    color:#000;
    font-weight:400;   
    
}











.cot-cotizador-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    font-family:"Poppins";
    font-size:24px;
}

/* Selector de versiones */
.cot-version-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cot-version-btn-container {
    flex: 1;
    min-width: 200px;
}

.cot-version-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #6f6f6f;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    height: 58px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cot-version-btn.cot-active {
    background-color: #434343;
}

.cot-version-price {
    font-size: 14px;
}

/* Sliders */
.cot-sliders-container {
    display: flex;
    width: 100%;
    margin-top: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.cot-option-section {
    flex: 1;
    min-width: 250px;
}

.cot-option-section h2 {
    color: #545864;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    font-size:24px;
    font-family:"Poppins";
}

.cot-slider-container {
    width: 100%;
    margin-top: 20px;
    position: relative;
}

.cot-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 2px;
  /*  background: linear-gradient(to right, #001A3F 50%, #d3d3d3 50%); */ 
    outline: none;
        background: #d3d3d3;
}

.cot-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #001A3F;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 0 0 1px #001A3F;
}

.cot-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
        font-family: "Poppins";
}

.cot-slider-label {
    background: transparent;
    border: none;
    font-style: italic;
    color: #666;
    cursor: pointer;
}

.cot-selected-value {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cot-enganche-btn, .cot-plazo-btn {
    flex: 1;
    background-color: #434343;
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-family:"Poppins";
    font-size:14px;
}

#cot-enganche-monto, .cot-mensualidad {
    flex: 1;
    background-color: #6f6f6f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
      font-family:"Poppins";
    font-size:14px;
}

.cot-mensualidad {
    justify-content: space-between;
    padding-left: 1rem;
}

/* Formulario */
.cot-form-container {
    width: 100%;
    margin-top: 40px;
    padding: 20px;
}

.cot-form-title {
    font-size: 18px;
    margin-bottom: 30px;
    color: #545864;
    font-weight: normal;
    font-size:18px;
    font-family:18px;
}

.cot-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.cot-input, .cot-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 2px;
    box-sizing: border-box;
}

.cot-select {
    background-color: #e0e0e0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.cot-privacy {
    text-align: center;
    margin: 20px 0;
}

.cot-privacy a {
    color: #007bff;
    text-decoration: none;
}

.cot-submit {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0px;
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-transform: uppercase;
    height:30px;
    font-size: 16px;
    margin-top:10px;
}

.cot-legal-text {
    font-size: 10px;
    margin-top: 2rem;
    text-align: left;
    color: #666;
}

.cot-form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 4px;
    display: none;
}

.cot-form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
}

.cot-form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
}

/* Responsive */
@media (max-width: 768px) {
    .cot-version-selector {
        flex-direction: column;
    }
    
    .cot-version-btn-container {
        width: 100%;
    }
    
    .cot-sliders-container {
        flex-direction: column;
    }
    
    .cot-option-section {
        width: 100%;
    }
    
    .cot-form-grid {
        grid-template-columns: 1fr;
    }
    
    .cot-selected-value {
        flex-direction: column;
    }
    
    .cot-enganche-btn, .cot-plazo-btn, #cot-enganche-monto, .cot-mensualidad {
        width: 100%;
    }
    
    .cot-mensualidad {
        margin-top: 10px;
    }
}