Moto
Carro
Camión
Particular
Público
Carga
0 - 5 años
6 - 10 años
Más de 10 años
const tarifasSOAT = {
moto: {
particular: { nuevo: 243400, medio: 326300, viejo: 758300 },
publico: { nuevo: 312400, medio: 412300, viejo: 812300 }
},
carro: {
particular: { nuevo: 512400, medio: 624300, viejo: 784500 },
publico: { nuevo: 612400, medio: 724300, viejo: 884500 }
},
camion: {
carga: { nuevo: 984300, medio: 1052300, viejo: 1234500 }
}
};
function consultarCostoSOAT() {
const clase = document.getElementById('clase-vehiculo').value;
const subtipo = document.getElementById('subtipo-vehiculo').value;
const edad = document.getElementById('edad-vehiculo').value;
const resultado = document.getElementById('resultado-soat');
if (tarifasSOAT[clase] && tarifasSOAT[clase][subtipo] && tarifasSOAT[clase][subtipo][edad]) {
resultado.innerHTML = `El costo del SOAT para un ${clase} ${subtipo} (${edad}) es: $${tarifasSOAT[clase][subtipo][edad].toLocaleString()}`;
} else {
resultado.innerHTML = 'No se encontró información para los criterios seleccionados. Por favor, verifica e intenta nuevamente.';
}
}
#soat-consulta {
text-align: center;
padding: 20px;
background-color: #e3f2fd;
border-radius: 12px;
max-width: 400px;
margin: 50px auto;
box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}
label {
display: block;
margin-bottom: 8px;
font-weight: bold;
}
input, select {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 8px;
margin-bottom: 10px;
}
button {
padding: 12px 25px;
background-color: #0288d1;
color: #fff;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0277bd;
}
#resultado-soat {
margin-top: 20px;
font-weight: bold;
font-size: 18px;
color: #01579b;
}
Consulta el valor del SOAT para tu moto
-- Selecciona una opción -- Ciclomotor Menos de 100 c.c. De 100 a 200 c.c. Más de 200 c.c. Motocarros, tricimoto, cuadriciclos Motocarro 5 pasajeros
#soat-table {
width: 100%;
border-collapse: collapse;
font-family: Arial, sans-serif;
background-color: #f9f9f9;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
border-radius: 12px;
overflow: hidden;
}
#soat-table th, #soat-table td {
padding: 12px;
text-align: center;
border: 1px solid #ddd;
}
#soat-table th {
background-color: #0288d1;
color: #ffffff;
font-weight: bold;
}
#soat-table tr:nth-child(even) {
background-color: #e3f2fd;
}
#soat-table tr:hover {
background-color: #b3e5fc;
cursor: pointer;
}
#search-box {
width: 100%;
padding: 10px;
margin-bottom: 10px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 8px;
}
function filterTable() {
const input = document.getElementById('search-box').value.toLowerCase();
const rows = document.querySelectorAll('#soat-table tbody tr');
rows.forEach(row => {
const text = row.textContent.toLowerCase();
row.style.display = text.includes(input) ? '' : 'none';
});
}
| Clase de Vehículo | Subtipo | Edad | Total a Pagar |
|---|---|---|---|
| MOTOS | Ciclomotor | - | $117.900 |
| MOTOS | Menos de 100 c.c. | - | $243.400 |
| MOTOS | De 100 a 200 c.c. | - | $326.300 |
| MOTOS | Más de 200 c.c. | - | $758.300 |
| MOTOS | Motocarros, tricimoto, cuadriciclos | - | $367.800 |
| MOTOS | Motocarro 5 pasajeros | - | $367.800 |
| CAMPEROS Y CAMIONETAS | Menos de 1500 c.c. | 0 a 9 años | $789.600 |
| CAMPEROS Y CAMIONETAS | Menos de 1500 c.c. | 10 años o más | $949.200 |
| CAMPEROS Y CAMIONETAS | 1500 a 2500 c.c. | 0 a 9 años | $942.800 |
| CAMPEROS Y CAMIONETAS | 1500 a 2500 c.c. | 10 años o más | $1.116.800 |
| CAMPEROS Y CAMIONETAS | Más de 2500 c.c. | 0 a 9 años | $1.105.900 |
| CAMPEROS Y CAMIONETAS | Más de 2500 c.c. | 10 años o más | $1.269.000 |
| CARGA O MIXTO | Menos de 5 toneladas | - | $884.700 |
| CARGA O MIXTO | De 5 a 15 toneladas | - | $1.277.600 |
| CARGA O MIXTO | Más de 15 toneladas | - | $1.615.500 |
| OFICIALES ESPECIALES | Menos de 1500 c.c. | - | $995.500 |
| OFICIALES ESPECIALES | 1500 a 2500 | - | $1.255.100 |
| OFICIALES ESPECIALES | Más de 2500 c.c. | - | $1.504.700 |
| AUTOS FAMILIARES | Menos de 1500 c.c. | 0 a 9 años | $445.300 |
| AUTOS FAMILIARES | Menos de 1500 c.c. | 10 años o más | $590.400 |
| AUTOS FAMILIARES | 1500 a 2500 | 0 a 9 años | $542.400 |
| AUTOS FAMILIARES | 1500 a 2500 | 10 años o más | $674.700 |
| AUTOS FAMILIARES | Más de 2500 c.c. | 0 a 9 años | $633.500 |
| AUTOS FAMILIARES | Más de 2500 c.c. | 10 años o más | $751.300 |
| VEHICULOS PARA SEIS O MAS PASAJEROS | Menos de 2500 | 0 a 9 años | $794.100 |
| VEHICULOS PARA SEIS O MAS PASAJEROS | Menos de 2500 | 10 años o más | $1.013.600 |
| VEHICULOS PARA SEIS O MAS PASAJEROS | 2500 o más | 0 a 9 años | $1.063.000 |
| VEHICULOS PARA SEIS O MAS PASAJEROS | 2500 o más | 10 años o más | $1.276.400 |
| AUTOS DE NEGOCIOS Y TAXIS | Menos de 1500 c.c. | 0 a 9 años | $267.900 |
| AUTOS DE NEGOCIOS Y TAXIS | Menos de 1500 c.c. | 10 años o más | $334.500 |
| AUTOS DE NEGOCIOS Y TAXIS | 1500 a 2500 | 0 a 9 años | $332.700 |
| AUTOS DE NEGOCIOS Y TAXIS | 1500 a 2500 | 10 años o más | $410.900 |
| AUTOS DE NEGOCIOS Y TAXIS | Más de 2500 c.c. | 0 a 9 años | $429.000 |
| AUTOS DE NEGOCIOS Y TAXIS | Más de 2500 c.c. | 10 años o más | $503.200 |
| BUSES Y BUSETAS DE SERVICIO PUBLICO URBANO | - | - | $640.000 |
| SERVICIO PUBLICO INTERMUNICIPAL | Menor 10 pasajeros | - | $632.700 |
| SERVICIO PUBLICO INTERMUNICIPAL | 10 o más pasajeros | - | $917.700 |

