/* Estilo general */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f0f4f8;
  color: #1e4896;
  margin: 0;
  padding: 0;
}

.menu-elegante {
  background: #1659bd;
  border-bottom: 1px solid #ccc;
  padding: 12px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.menu-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.enlaces {
  display: flex;
  gap: 20px;
}
.enlaces a {
  font-weight: 600;
  color: #003087;
  text-decoration: none;
  background-color: #f4f6f8;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  transition: all 0.2s ease;
}
.enlaces a:hover {
  background-color: #003087;
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.hamburger span {
  width: 22px;
  height: 3px;
  background-color: #fbfcfd;
  display: block;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .enlaces {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 65px;
    right: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px;
    z-index: 99;
  }
  .enlaces.show {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}

.nav-bar {
  display: none;
}

.logo-superior {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background-color: white;
  padding: 15px 0;
  flex-wrap: nowrap;
}

.logo-img {
  max-height: 70px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px;
  background-color: #f8f9fa;
}

.imagen-cotizador img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.cotizador {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  width: 100%;
  max-width: 340px;
  font-size: 14px;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}
input, select {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 2px solid #00a3e0;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
}
input#placa {
  text-transform: uppercase;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #e3e829;
  color: #003087;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  margin-top: 20px;
  cursor: pointer;
}
button:hover {
  background-color: #00aec7;
  color: white;
}

.btn-pagar {
  background-color: #e3e829;
  color: #003087;
  font-size: 16px;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 50px;
  width: 100%;
  cursor: pointer;
}
.btn-pagar:hover {
  background-color: #00aec7;
  color: white;
}

#btn-regresar {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 25px;
  width: 100%;
  background-color: #e3e829;
  color: #003087;
  font-weight: bold;
  border: none;
  margin-top: 10px;
  cursor: pointer;
}
#btn-regresar:hover {
  background-color: #00aec7;
  color: white;
}

#contenedor-bold iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 50px !important;
  border: none !important;
  border-radius: 50px !important;
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background-color: #fff;
  color: #003087;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  text-align: left;
}
.popup-btn {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border: none;
  font-weight: bold;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  background-color: #003087;
  color: white;
}
.popup-btn.secundario {
  background-color: #e3e829;
  color: #003087;
}
.popup-btn.secundario:hover {
  background-color: #00aec7;
  color: white;
}
.popup-btn:hover {
  background-color: #002060;
}

.info-soat {
  background: #f0f4f8;
  padding: 40px 20px;
}
.info-soat h2 {
  color: #003087;
  font-size: 1.5rem;
  margin-top: 30px;
}
.info-soat ul.razones li {
  display: flex;
  align-items: center;
  margin: 15px 0;
}
.info-soat ul.razones img {
  width: 32px;
  margin-right: 15px;
}
.beneficios {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.beneficio {
  flex: 1 1 220px;
  display: flex;
  gap: 15px;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}
.beneficio img {
  width: 40px;
}
.info-soat p a {
  color: #003087;
  font-weight: bold;
  text-decoration: underline;
}

.contenedor-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  padding: 40px 5%;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}
.info-vehiculo,
.formulario-central,
.valor-pago-lateral {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  align-self: flex-start;
}
.info-vehiculo {
  flex: 0 0 28%;
  max-width: 360px;
}
.formulario-central {
  flex: 1 1 44%;
  max-width: 600px;
}
.valor-pago-lateral {
  flex: 0 0 28%;
  max-width: 360px;
}

.resumen-box p {
  margin: 6px 0;
  line-height: 1.4;
  color: #000;
}

.monto-pago {
  font-size: 26px;
  font-weight: bold;
  color: #003087;
  margin: 8px 0 15px;
}
.nota-pago {
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;
}
.checkbox-linea {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}
.checkbox-linea a {
  color: #003087;
  text-decoration: underline;
  font-weight: bold;
}

.barra-pasos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  background-color: #eef1f7;
  padding: 12px 5%;
  font-size: 14px;
  color: #003087;
  flex-wrap: wrap;
}
.paso {
  position: relative;
  padding: 6px 15px;
  border-radius: 20px;
  background-color: #dbe4f3;
  font-weight: bold;
}
.paso.activo {
  background-color: #e3e829;
  color: rgb(10, 23, 143);
}
.logo-pasos {
  height: 32px;
  margin-right: 10px;
}

.footer-sura {
  background-color: #003087;
  padding: 30px 20px;
  margin-top: 40px;
  font-size: 13px;
  color: #fff;
  text-align: center;
}
.footer-sura .footer-container {
  max-width: 1000px;
  margin: auto;
  line-height: 1.6;
}
.medios-pago {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.medios-pago img {
  height: 36px;
  object-fit: contain;
  
}

@media (max-width: 992px) {
  .contenedor-horizontal {
    flex-direction: column;
    padding: 20px;
  }

  .info-vehiculo,
  .formulario-central,
  .valor-pago-lateral {
    width: 100%;
    max-width: 100%;
  }

  .barra-pasos {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
    align-items: center;
  }

  .imagen-cotizador img {
    max-width: 100%;
    margin-top: 20px;
  }

  .cotizador {
    width: 100%;
  }

  .soat-beneficio-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .soat-beneficio-texto,
  .soat-beneficio-imagen {
    flex: 1 1 100%;
    text-align: center;
  }

  .soat-beneficio-imagen img {
    max-width: 90%;
  }

  .contacto-info {
    background-color: #eef1f7;
    color: #003087;
    padding: 40px 20px;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto 40px auto;
    border-radius: 10px;
  }
  .contacto-info h3 {
    color: #003087;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .contacto-info p {
    margin-bottom: 15px;
  }
}

.soat-beneficio-flex {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 40px;
}

.soat-beneficio-texto {
  flex: 1 1 60%;
}
.soat-beneficio-imagen {
  flex: 1 1 40%;
  text-align: right;
}
.soat-beneficio-imagen img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  height: auto;
}

.loading-overlay-logo {
  height: 60px;
  margin-bottom: 15px;
  animation: animCargando 1.5s ease-in-out infinite;
  will-change: transform, opacity;
}
.loading-overlay-text {
  font-size: 20px;
  color: #003087;
  font-weight: bold;
  animation: animCargando 1.5s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes animCargando {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

#contenedor-bold .bold-payment-button {
  width: 100% !important;
  background-color: #e3e829 !important;
  color: #003087 !important;
  font-size: 16px !important;
  font-weight: bold !important;
  border-radius: 50px !important;
  padding: 12px 0 !important;
  margin-top: 10px !important;
  border: none !important;
  cursor: pointer;
  transition: background 0.3s ease !important;
}
#contenedor-bold .bold-payment-button:hover {
  background-color: #00aec7 !important;
  color: white !important;
}
#contenedor-bold {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  margin-top: 10px;
}

@media (max-width: 480px) {
  .checkbox-linea {
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }
  .checkbox-linea input[type="checkbox"] {
    margin: 0;
    transform: scale(1.1);
  }
  .checkbox-linea a {
    display: inline;
    margin-top: 0;
  }
}

#logoCargaAnim {
  opacity: 0;
  animation: fadeIn 2s ease forwards;
}

#mensajeCarga {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
#logoCargaAnim {
  width: 100px;
  animation: pulse 2s ease-in-out infinite;
  opacity: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.85;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

