/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * pantallas grandes
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --pale-purple-pantone: hsl(262, 63%, 92%);
  --medium-sea-green: hsl(152, 63%, 43%);
  --lavender-blush: hsl(336, 35%, 92%);
  --carolina-blue: hsl(204, 91%, 53%);
  --columbia-blue: hsl(204, 92%, 90%);
  --alice-blue-1: hsl(216, 38%, 95%);
  --alice-blue-2: hsl(216, 75%, 97%);
  --alice-blue-3: hsl(216, 38%, 95%);
  --alice-blue-4: hsl(217, 33%, 92%);
  --independence: hsl(219, 21%, 39%);
  --deep-cerise: hsl(329, 63%, 52%);
  --eerie-black: hsl(210, 11%, 15%);
  --space-cadet: hsl(240, 22%, 25%);
  --blue-jeans: hsl(204, 80%, 63%);
  --slate-blue: hsl(262, 60%, 57%);
  --beau-blue: hsl(208, 86%, 92%);
  --honey-dew: hsl(152, 48%, 89%);
  --mimi-pink: hsl(329, 63%, 90%);
  --red-salsa: hsl(0, 79%, 63%);
  --sapphire: hsl(211, 100%, 35%);
  --manatee: hsl(219, 14%, 60%);
  --white: hsl(0, 0%, 100%);

  --gradient: linear-gradient(to top, var(--alice-blue-2), var(--alice-blue-3));

  /**
   * typography
   */

  --ff-nunito: 'Nunito', sans-serif;
  --ff-open-sans: 'Open Sans', sans-serif;

  @font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600') format('woff2');
  }

  --fs-1: 1.98rem;
  --fs-2: 1.875rem;
  --fs-3: 1.5rem;
  --fs-4: 1.375rem;
  --fs-5: 1.125rem;
  --fs-6: 0.85rem;
  --fs-7: 0.625rem;

  --fw-400: 400;
  --fw-600: 600;

  /**
   * transition
   */

  --transition: 0.5s ease;

  /**
   * spacing
   */

  --section-padding: 50px;

  /**
   * radius
   */

  --radius-10: 10px;
  --radius-14: 14px;
  --radius-18: 18px;

  /**
   * shadow
   */

  --shadow-1: 3px 3px 9px hsla(240, 14%, 69%, 0.2);
  --shadow-2: 3px 3px 9px hsla(204, 92%, 59%, 0.3);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span,
label,
input,
button,
ion-icon {
  display: block;
}

button,
input {
  background: none;
  border: none;
  font: inherit;
}

button {
  cursor: pointer;
}

input {
  width: 100%;
}

ion-icon {
  pointer-events: none;
}

html {
  font-family: var(--ff-open-sans);
  color: var(--eerie-black);
  font-size: 1rem;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  background: var(--alice-blue-1);
  overflow-x: hidden;
  
}

::-webkit-scrollbar {
  width: 15px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: hsla(219, 14%, 60%, 0.3);
  border: 2px solid var(--white);
}

::-webkit-scrollbar-thumb:hover {
  background: hsla(219, 14%, 60%, 0.5);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

button,
a {
  transition: var(--transition);
}

.btn {
  position: relative;
  background: var(--background, var(--carolina-blue));
  color: var(--color, var(--white));
  min-width: var(--width, 40px);
  min-height: var(--height, 40px);
  padding: 5px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-14);
  font-family: var(--ff-nunito);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  overflow: hidden;
}

.align-right {
  float: right;
  /* Alinea el botón a la derecha */
  margin-left: auto;
  /* Asegúrate de que el botón tenga margen a la izquierda */
}

.btn ion-icon {
  font-size: 22px;
  --ionicon-stroke-width: 40px;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(0, 0%, 100%, 0.4), transparent);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.btn:is(:hover, :focus) {
  box-shadow: var(--shadow-2);
}

.btn:is(:hover, :focus)::before {
  opacity: 1;
}

.btn6 {
  position: relative;
  background: #25d366;
  color: rgb(0, 0, 0);
  min-width: var(--width, 120px);
  min-height: var(--height, 40px);
  padding: 5px 12px;
  display: flex;                   /* ✅ Flex para alinear horizontalmente */
  align-items: center;            /* ✅ Centra verticalmente */
  justify-content: center;        /* ✅ Centra horizontalmente */
  gap: 8px;                        /* Espacio entre ícono y texto */
  border-radius: var(--radius-14);
  font-family: var(--ff-nunito);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  overflow: hidden;
  text-decoration: none;          /* Por si es un <a> */
}


.align-right {
  float: right;
  /* Alinea el botón a la derecha */
  margin-left: auto;
  /* Asegúrate de que el botón tenga margen a la izquierda */
}

.btn6 ion-icon {
  font-size: 22px;
  --ionicon-stroke-width: 40px;
}

.btn6::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(0, 0%, 100%, 0.4), transparent);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.btn6:is(:hover, :focus) {
  box-shadow: var(--shadow-2);
}

.btn6:is(:hover, :focus)::before {
  opacity: 1;
}

.section {
  padding-block: var(--section-padding);
}

.h1,
.h2,
.h3 {
  color: var(--space-cadet);
  font-family: var(--ff-nunito);
  line-height: 1.4;
}

.h1 {
  font-size: var(--fs-1);
  text-transform: uppercase;
}

.h2,
.h3 {
  font-weight: var(--fw-400);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-4);
}

.w-100 {
  width: 100%;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header-contact {
  display: none;
}

.header {
  background: var(--alice-blue-1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
  z-index: 4;
}

.header.active {
  box-shadow: var(--shadow-1);
}

.header .container {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-actions .btn span {
  display: none;
}

.user-btn6 {
  --color: var(--independence);
  --background: var(--white);
  --shadow-2: var(--shadow-1);
  box-shadow: var(--shadow-1);
}



.nav-toggle-btn span {
  background: var(--independence);
  width: 22px;
  height: 2px;
  border-radius: 2px;
  margin-block: 8px;
  transform-origin: right;
  transition: var(--transition);
}

.nav-toggle-btn span.two {
  transform: scaleX(0.7);
}

.nav-toggle-btn span.three {
  transform: scaleX(0.4);
}

.nav-toggle-btn:is(:hover, :focus) span {
  background: var(--carolina-blue);
}

.nav-toggle-btn.active span {
  transform: scaleX(1);
  background: var(--carolina-blue);
}

.navbar {
  background: var(--alice-blue-1);
  position: fixed;
  top: 70px;
  margin-bottom: 0;
  border-radius: 18px;
  right: -130px;
  max-width: 140px;
  /* Mantiene el ancho máximo */
  width: 100%;
  padding: 10px 15px;
  border: 1px solid var(--white);
  box-shadow: var(--shadow-1);
  visibility: hidden;
  transition: 0.25s cubic-bezier(0.51, 0.03, 0.64, 0.28);

  /* Asegura que el contenido interno se adapte */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centra el contenido horizontalmente */
  flex-direction: column;
  /* Los elementos dentro estarán apilados verticalmente si hay más de uno */
}

/* Ajustes para el logo y el texto dentro de la barra */
.navbar .logo {
  display: flex;
  align-items: center;
  /* Centra verticalmente el logo y el texto */
  text-decoration: none;
  /* Sin subrayado */
}

.navbar .logo img {
  width: 60px;
  /* Tamaño del logo */
  height: auto;
  /* Mantiene proporciones */
  margin-right: 5px;
  /* Espaciado entre el logo y el texto */
}

.navbar .logo-text {
  font-size: 14px;
  /* Ajusta el tamaño del texto */
  color: var(--space-cadet);
  /* Define el color */
  font-family: var(--ff-nunito);
  /* Fuente específica */
  font-weight: bold;
  /* Negrita */
  white-space: nowrap;
  /* Evita que el texto se rompa */
}



.navbar.active {
  visibility: visible;
  transform: translateX(-100%);
  transition: 0.5s cubic-bezier(0.33, 0.85, 0.56, 1.02);
}



.navbar-link {
  color: var(--independence);
  font-family: var(--ff-nunito);
  font-size: var(--fs-6);
  padding-block: 5px;
  margin-bottom: 6px;
}

.navbar-link:is(:hover, :focus) {
  color: var(--carolina-blue);
}

.overlay {
  position: fixed;
  top: 70px;
  background: hsl(216, 38%, 95%);
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.logo {
  display: flex;
  align-items: center;
  /* Centra verticalmente logo y texto */
  text-decoration: none;
  /* Elimina subrayado del enlace */
  padding: 0 10px;
  /* Agrega un poco de espacio lateral */
  height: 100%;
  /* Ajusta la altura al contenedor de la barra */
}

/* Estilo para la imagen del logo */
.logo img {
  width: 30px;
  /* Ajusta el tamaño del logo */
  height: auto;
  /* Mantiene la proporción del logo */
  margin-right: 5px;
  /* Espacio entre el logo y el texto */
}

/* Estilo para el texto al lado del logo */
.logo-text {
  font-size: 18px;
  /* Ajusta el tamaño del texto */
  color: var(--space-cadet);
  /* Cambia al color que desees */
  font-family: var(--ff-nunito);
  /* Fuente del texto */
  font-weight: bold;
  /* Aplica negrita al texto */
  white-space: nowrap;
  /* Evita que el texto se rompa en varias líneas */
}

/* Media query para pantallas más grandes */
@media (min-width: 768px) {
  .logo img {
    width: 30px;
    /* Tamaño más grande del logo en pantallas grandes */
  }

  .logo-text {
    font-size: 20px;
    /* Tamaño del texto para pantallas grandes */
  }
}



.hero {
  padding-top: 120px;
  margin-bottom: -50px;
}










.hero-text {
  color: var(--independence);
  line-height: 1.5;
  margin-bottom: 30px;
  width: 100%;
  /* Ocupa todo el ancho por defecto */
  text-align: left;
  /* Centra el texto en pantallas pequeñas */
}

/* Media query para pantallas grandes */
@media (min-width: 768px) {
  .hero-text {
    width: 50%;
    /* Ocupa la mitad de la pantalla en dispositivos grandes */
    margin-left: 50px;
    text-align: left;
    /* Alinea el texto a la izquierda en pantallas grandes */
  }
}


.hero-banner {
  display: none;
}

.hero-form {
  background: var(--gradient);
  border: 1px solid var(--white);
  box-shadow: var(--shadow-1);
  border-radius: var(--radius-18);
  font-family: var(--ff-nunito);
}

.input-wrapper {
  padding: 15px 20px;
}

.input-wrapper:not(:last-of-type) {
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.08);
}

.input-label {
  color: var(--manatee);
  font-size: var(--fs-6);
  margin-bottom: 10px;
}

.input-field {
  color: var(--space-cadet);
  outline: 2px solid transparent;
  outline-offset: 5px;
  border-radius: 4px;
  transition: var(--transition);
}

.input-field:focus {
  outline-color: var(--carolina-blue);
}

.input-field::placeholder {
  color: var(--independence);
}

.hero-form .btn {
  --width: calc(100% - 40px);
  --height: 50px;
  margin: 20px;
  text-transform: uppercase;
}

/*-----------------------------------*\
  #FORM
\*-----------------------------------*/

.form-container {
  background: var(--gradient);
  border: 1px solid var(--white);
  border-radius: var(--radius-18);
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 400px;
  position: absolute;
  /* Esto permite posicionarlo a la derecha */
  top: 10px;
  /* Ajusta esto según la distancia desde la parte superior */
}

/* Centrado solo en pantallas de dispositivos móviles */
@media (max-width: 768px) {
  .form-container {
    margin: 0 auto;
    /* Centra el contenedor horizontalmente */
    position: relative;
    /* El contenedor será relativo en móviles */
  }
}

/* Ubicación al lado derecho en pantallas grandes */
@media (min-width: 769px) {
  .form-container {
    right: 50px;
    /* Lo coloca al lado derecho */
    top: 100px;
    /* Ajusta la posición desde la parte superior si es necesario */
  }
}



h2 {
  text-align: center;
  color: #333;
  margin-bottom: 5px;
  font-size: 24px;
}

.error {
  color: red;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

/* Estilos para días deshabilitados */
.flatpickr-day.flatpickr-disabled {
  color: rgba(0, 0, 0, 0.144) !important;
  /* Cambia el color a lo que desees */
  background-color: #3333331c !important;
  cursor: not-allowed !important;
  /* Mantiene el cursor como no permitido */
  text-decoration: none !important;
  /* Elimina el estilo de tachado */
}

/* Slider de imágenes */
.slider-sl {
  position: relative;
  width: 98%;
  max-width: 500px;
  height: 200px;
  margin: -40px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.548);
  background-color: #ffffff;
  margin-bottom: 30px;
}

.slides-sl {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-sl {
  min-width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  /* Inicialmente todas las imágenes están invisibles */
  transition: opacity 1.5s ease-in-out;
  /* Transición suave de opacidad */
}

.slide-sl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-with-bar {
  position: relative;
  padding-left: 20px; /* Espacio para la barra */
  display: inline-block;
}

.text-with-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5px; /* Ancho de la barra */
  height: 100%; /* Mismo alto que el texto */
  background-color: hsl(152, 63%, 43%); /* Color de la barra */
  margin-left: 10;
  border-radius: 50px;
}


.caption-sl {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: hsla(0, 0%, 100%, 0.664);
  /* Fondo con transparencia */
  padding: 8px;
  border-radius: 120px;
  /* Bordes redondeados */
  cursor: pointer;
  box-shadow:
    0 0 10px 5px hsla(0, 0%, 100%, 0.486),
    /* Sombra interna */
    0 0 20px 15px hsla(0, 0%, 100%, 0.24),
    /* Sombra intermedia */
    0 0 30px 25px hsla(0, 0%, 100%, 0.247);
  /* Sombra externa */
}


.caption-sl a {
  color: #000000b0;
  transition: font-weight 0.3s;
  /* Transición suave */
  font: 800 1.2rem Montserrat, sans-serif;
  letter-spacing: -0.07ex;
}


.dots-sl {
  text-align: center;
  position: absolute;
  bottom: 5px;
  width: 100%;
}

.dot-sl {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 2px;
  background-color: hsla(152, 63%, 43%, 0.295);
  border-radius: 50%;
  cursor: pointer;
  transition: width 0.3s ease;
}

.dot-sl.active {
  width: 25px;
  border-radius: 5px;
  background-color: hsl(152, 63%, 43%);
}

/* Estilos para pantallas pequeñas (centrado) */
@media (max-width: 768px) {
  .slider-sl {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Estilos para pantallas grandes (ubicado a la izquierda) */
@media (min-width: 769px) {
  .slider-sl {
    margin-left: 20px;
    margin-right: auto;
    max-width: 700px;
    height: 320px;
    margin-top: 2vh;
  }
}


/* Estilo del input */
input[type="text"] {
  width: 100%;
  height: 40px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: var(--radius-14);

  margin-bottom: 20px;
  /* Espaciado entre los campos */
  box-sizing: border-box;
  /* Para incluir padding en el ancho total */
}

/* Estilo para el select */
select {
  width: 100%;
  height: 40px;
  font-size: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: var(--radius-14);
  margin-bottom: 20px;
  /* Espaciado entre los campos */
  box-sizing: border-box;
  /* Para incluir padding en el ancho total */
}

/* Botón centrado */
/* From Uiverse.io by adamgiebl */
.cssbuttons-io-button {
  background: hsl(204, 91%, 53%);
  color: white;
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #714da6;
  overflow: hidden;
  position: relative;
  height: 2.7em;
  padding-right: 3.3em;
  cursor: pointer;
  margin-left: auto;
  /* Este ajuste empuja el botón hacia la derecha */
}


.cssbuttons-io-button .icon {
  background: var(--gradient);
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #0cbbf0;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: var(--space-cadet);
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}


/*-----------------------------------*\
  #FEATURED CAR
\*-----------------------------------*/

.featured-car .title-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 15px;
  margin-bottom: 30px;
}



.featured-car-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
}

.featured-car-card {
  background: var(--gradient);
  border: 1px solid var(--white);
  border-radius: var(--radius-18);
  padding: 10px;
  box-shadow: var(--shadow-1);
}

.featured-car-card .card-banner {
  position: relative;
  /* Hacer que los elementos dentro se posicionen respecto a este contenedor */
  background: hsla(0, 0%, 0%, 0.2);
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-18);
  overflow: hidden;
  /* Asegura que el contenido no se desborde */
}

.insurance-text {
  position: absolute;
  bottom: 10px;
  /* Alinea el texto a 10px desde la parte inferior */
  left: 10px;
  /* Alinea el texto a 10px desde el borde izquierdo */
  color: white;
  font-weight: 500;
  /* Peso de texto intermedio */
  padding: 5px;
  font-size: 14px;
  z-index: 1;
  /* Asegura que el texto se coloque por encima de la imagen */
  display: flex;
  /* Para alinear la imagen y el texto de forma horizontal */
  align-items: center;
  /* Alinea la imagen y el texto verticalmente */
}

.insurance-text .insurance-icon {
  width: 16px;
  /* Tamaño de la imagen */
  height: 16px;
  margin-right: 5px;
  filter: brightness(0) invert(1);
  /* Cambia el color de la imagen a blanco */
}




.featured-car-card .card-banner>img {
  height: 100%;
  object-fit: cover;
}



.featured-car-card .card-content {
  padding: 20px 10px 10px;
}

.featured-car-card .card-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.featured-car-card .card-title {
  width: calc(100% - 60px);
}

.featured-car-card .card-title>a {
  color: inherit;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-car-card .card-title>a:is(:hover, :focus) {
  color: var(--carolina-blue);
}

.featured-car-card .year {
  font-family: var(--ff-nunito);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  padding: 3px 12px;
  border: 2px dashed hsla(204, 91%, 53%, 0.4);
  border-radius: var(--radius-14);
}

.featured-car-card .card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
  margin-bottom: 15px;
}

.featured-car-card .card-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-car-card .card-list-item i {
  font-size: 15px;
  color: var(--carolina-blue);
  --ionicon-stroke-width: 38px;
}

.featured-car-card .card-item-text {
  color: var(--independence);
  font-size: var(--fs-6);
}

.featured-car-card .card-price-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.featured-car-card .card-price {
  font-family: var(--ff-nunito);
  font-size: var(--fs-6);
  color: var(--space-cadet);
}

.featured-car-card .card-price strong {
  font-size: var(--fs-3);
  font-weight: var(--fw-400);
}

.featured-car-card .btn:last-child {
  --height: 36px;
  min-width: 100%;
}

.featured-car-card .fav-btn {
  --background: var(--beau-blue);
  --color: var(--blue-jeans);
  --height: 36px;
  --width: 36px;
  --shadow-2: none;
}

.featured-car-card .fav-btn ion-icon {
  font-size: 18px;
}

.featured-car-card .fav-btn:is(:hover, :focus) {
  --background: var(--lavender-blush);
  --color: var(--red-salsa);
}





/*-----------------------------------*\
  #GET START
\*-----------------------------------*/

.get-start .section-title {
  margin-bottom: 25px;
}

.get-start-list {
  display: grid;
  gap: 20px;
}

.get-start-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-18);
  border: 1px solid var(--white);
  transition: var(--transition);
}

.get-start-card:hover {
  background: var(--alice-blue-2);
  box-shadow: var(--shadow-1);
}

.get-start-card .card-icon {
  background: var(--icon-card-bg, var(--columnia-blue));
  color: var(--icon-card-color, var(--carolina-blue));
  height: 50px;
  width: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-14);
  margin-bottom: 20px;
}

.get-start-card .card-icon ion-icon {
  font-size: 26px;
  --ionicon-stroke-width: 45px;
}

.get-start-card .icon-1 {
  --icon-card-bg: var(--mimi-pink);
  --icon-card-color: var(--deep-cerise);
}

.get-start-card .icon-2 {
  --icon-card-bg: var(--columbia-blue);
  --icon-card-color: var(--carolina-blue);
}

.get-start-card .icon-3 {
  --icon-card-bg: var(--honey-dew);
  --icon-card-color: var(--medium-sea-green);
}

.get-start-card .icon-4 {
  --icon-card-bg: var(--pale-purple-pantone);
  --icon-card-color: var(--slate-blue);
}

.get-start-card .card-title {
  color: var(--space-cadet);
  font-family: var(--ff-nunito);
  font-weight: var(--fw-400);
  margin-bottom: 15px;
}

.get-start-card .card-text {
  color: var(--independence);
}

.get-start-card .card-link {
  position: relative;
  color: var(--carolina-blue);
  width: max-content;
}

.get-start-card .card-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--carolina-blue);
  transition: var(--transition);
}

.get-start-card .card-link:is(:hover, :focus)::before {
  width: 100%;
}





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog .section-title {
  margin-bottom: 30px;
}

.blog-card {
  background: var(--alice-blue-2);
  border-radius: var(--radius-18);
  border: 1px solid var(--white);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.blog-card .card-banner {
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
}

.blog-card .card-banner a:first-child {
  height: 100%;
}

.blog-card .card-banner img {
  height: 100%;
  object-fit: cover;
}

.blog-card .card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  --height: 30px;
  --width: 92px;
}

.blog-card .card-content {
  padding: 20px;
}

.blog-card .card-title {
  margin-bottom: 20px;
}

.blog-card .card-title>a {
  color: inherit;
}

.blog-card .card-title>a:is(:hover, :focus) {
  color: var(--carolina-blue);
}

.blog-card .card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card :is(.publish-date, .comments) {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-6);
  color: var(--independence);
}

.blog-card :is(.publish-date, .comments) ion-icon {
  font-size: 15px;
  --ionicon-stroke-width: 50px;
}

.blog .has-scrollbar {
  display: flex;
  gap: 20px;
  scroll-snap-type: inline mandatory;
  overflow-x: auto;
  padding-bottom: 20px;
}

.blog .has-scrollbar>li {
  flex-shrink: 0;
  max-width: 330px;
  width: 100%;
  scroll-snap-align: start;
}

.has-scrollbar::-webkit-scrollbar-track {
  background: var(--alice-blue-1);
  outline: 2px solid var(--carolina-blue);
  border-radius: 10px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  border-color: var(--alice-blue-1);
  background: var(--carolina-blue);
  border-radius: 10px;
}

.has-scrollbar::-webkit-scrollbar-button {
  width: calc(25% - 40px);
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background: var(--alice-blue-4);
  color: var(--independence);
}

.footer a {
  color: inherit;
}

.footer-top {
  padding-block: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 50px;
}

.footer-top .logo {
  margin-bottom: 20px;
}

.footer-text {
  font-size: var(--fs-6);
  line-height: 1.8;
}

.footer-list {
  font-family: var(--ff-nunito);
}

.footer-list:not(:last-of-type) {
  width: 50%;
}

.footer-list:last-of-type {
  width: 100%;
  column-count: 2;
}

.footer-list-title {
  color: var(--space-cadet);
  font-weight: var(--fw-600);
  margin-bottom: 8px;
}

.footer-link {
  font-size: var(--fs-6);
  padding-block: 6px;
}

.footer-link:is(:hover, :focus) {
  color: var(--carolina-blue);
}

.footer-list:last-child>li:first-child {
  column-span: all;
}

.footer-bottom {
  background: var(--gradient);
  border: 1px solid var(--white);
  border-radius: var(--radius-18) var(--radius-18) 0 0;
  padding: 20px;
  padding-bottom: 50px; /* Añadido */
}

.social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-link {
  font-size: 20px;
}

.social-link ion-icon {
  --ionicon-stroke-width: 40px;
}

.social-link:is(:hover, :focus) {
  color: var(--carolina-blue);
}

.copyright {
  font-size: var(--fs-6);
}

.copyright>a {
  display: inline-block;
}

.copyright>a:is(:hover, :focus) {
  color: var(--carolina-blue);
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 350px screen
 */

@media (min-width: 350px) {

  /**
   * FEATURED CAR
   */

  .featured-car-card .card-list {
    grid-template-columns: 1fr 1fr;
  }

  .featured-car-card .card-price {
    margin-right: auto;
  }

  .featured-car-card .btn:last-child {
    min-width: max-content;
    padding-inline: 15px;
  }

}





/**
 * responsive for large than 580px screen
 */

@media (min-width: 580px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .header-actions .btn span {
    display: block;
    font-weight: var(--fw-400);
    padding-inline: 15px;
  }

  .header-actions .btn:first-of-type ion-icon {
    display: none;
  }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 2.625rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }



  /**
   * HEADER
   */

  .header-actions {
    gap: 30px;
  }

  .header-contact {
    display: block;
    text-align: center;
  }

  .header-contact .contact-link {
    color: var(--space-cadet);
    font-family: var(--ff-nunito);
    font-size: var(--fs-5);
    line-height: 1.3;
  }

  .header-contact .contact-link:is(:hover, :focus) {
    color: var(--carolina-blue);
  }

  .header-contact .contact-time {
    color: var(--independence);
    font-size: var(--fs-7);
  }



  /**
   * HERO
   */

  .hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    z-index: 1;
  }

  .hero-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 0.8fr;
  }

  .input-wrapper:not(:last-of-type) {
    border-bottom: none;
    border-right: 1px solid hsla(0, 0%, 0%, 0.08);
  }

  .input-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }




  /**
   * FEATURED CAR
   */

  .featured-car-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }



  /**
   * GET START
   */

  .get-start-list {
    grid-template-columns: 1fr 1fr;
  }



  /**
   * FOOTER
   */

  .footer-brand {
    width: 100%;
  }

  .footer-text {
    max-width: 400px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding-block: 30px;
    box-shadow: var(--shadow-1);
  }

  .social-list {
    margin-bottom: 0;
  }

  .trustpilot-widget {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    /* Centra el widget vertical y horizontalmente */
    padding: 0;
    /* Elimina cualquier padding interno */
    background: none;
    /* Elimina cualquier color de fondo */
    border: none;
    /* Elimina cualquier borde */
    box-shadow: none;
    /* Elimina sombras si existen */
  }

  .trustpilot-widget a {
    color: #25d366;
    /* Personaliza el color del enlace */
    font-weight: bold;
    text-decoration: none;
    /* Elimina subrayado del enlace */
  }

  .trustpilot-widget a:hover {
    color: #128c7e;
    /* Cambia el color al pasar el cursor */
  }


}






/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 960px;
  }



  /**
   * HERO
   */

  .hero .container {
    width: 100%;
  }



  /**
   * BLOG
   */

  .blog .has-scrollbar {
    padding-bottom: 50px;
  }

  .blog .has-scrollbar>li {
    max-width: 450px;
  }



  /**
   * FOOTER
   */

  .footer-list:not(:last-of-type) {
    width: 25%;
  }

  .footer-list:last-of-type {
    width: 50%;
  }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 2.875rem;
    --fs-2: 2rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 1170px;
  }




  /**
   * HEADER
   */

  .overlay,
  .nav-toggle-btn {
    display: none;
  }

  .navbar,
  .navbar.active {
    all: unset;
  }

  .navbar-link {
    margin-bottom: 0;
    font-weight: var(--fw-600);
  }

  .navbar-list {
    display: flex;
    gap: 50px;
  }



  /**
   * HERO
   */

  .hero {

    margin: 1vh auto;
  }

  .hero-banner {
    left: auto;
    right: 50px;
    width: 630px;
  }

  .hero-form {
    max-width: 900px;
  }

  .hero-form .btn {
    --width: calc(100% - 40px);
    --height: 50px;
    margin: 20px;
    text-transform: uppercase;
  }



  /**
   * FEATURED CAR 
   */

  .featured-car-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }



  /**
   * GET START
   */

  .get-start-list {
    grid-template-columns: repeat(4, 1fr);
  }



  /**
   * BLOG
   */

  .blog .has-scrollbar>li {
    max-width: 340px;
    scroll-snap-align: center;
  }



  /**
   * FOOTER
   */

  .footer-brand {
    width: 33.33%;
  }

  .footer-text {
    max-width: 35ch;
  }

  .footer-list:not(:last-of-type) {
    width: 16.66%;
  }

  .footer-list:last-of-type {
    width: 33.33%;
  }

}


/**
   * LOADER
   */

#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: hsl(216, 38%, 95%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#main-content {
  display: none;
  /* Asegura que el contenido no se muestre antes de tiempo */
}

.cube-folding {
  width: 50px;
  height: 50px;
  display: inline-block;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  font-size: 0;
}

.cube-folding span {
  position: relative;
  width: 25px;
  height: 25px;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
  display: inline-block;
}

.cube-folding span::before {
  content: "";
  background-color: hsl(204, 91%, 53%);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 25px;
  height: 25px;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-animation: folding 2.5s infinite linear both;
  -moz-animation: folding 2.5s infinite linear both;
  animation: folding 2.5s infinite linear both;
}

.cube-folding .leaf2 {
  -webkit-transform: rotateZ(90deg) scale(1.1);
  -moz-transform: rotateZ(90deg) scale(1.1);
  transform: rotateZ(90deg) scale(1.1);
}

.cube-folding .leaf2::before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  background-color: hsl(204, 91%, 53%);
}

.cube-folding .leaf3 {
  -webkit-transform: rotateZ(270deg) scale(1.1);
  -moz-transform: rotateZ(270deg) scale(1.1);
  transform: rotateZ(270deg) scale(1.1);
}

.cube-folding .leaf3::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  background-color: hsl(204, 91%, 53%);
}

.cube-folding .leaf4 {
  -webkit-transform: rotateZ(180deg) scale(1.1);
  -moz-transform: rotateZ(180deg) scale(1.1);
  transform: rotateZ(180deg) scale(1.1);
}

.cube-folding .leaf4::before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  background-color: hsl(204, 91%, 53%);
}

@-webkit-keyframes folding {

  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    -moz-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    -moz-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    -moz-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}

@-moz-keyframes folding {

  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    -moz-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    -moz-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    -moz-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}

@-ms-keyframes folding {

  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    -moz-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    -moz-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    -moz-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}

@keyframes folding {

  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    -moz-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    -moz-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    -moz-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}



/* Estilos del Popup */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* Asegúrate de que el popup esté por encima */
  
}

.popup-content {
  background: hsl(216, 38%, 95%);
  width: 90%;
  max-width: 400px;
  padding: 20px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  max-height: 90vh; /* No deja que el popup sea más grande que el 90% de la pantalla */
  overflow-y: auto; /* Agrega un scroll si el contenido es demasiado grande */
}

.carousel img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: none;
  border-radius: 18px;
}

.carousel img.active {
  display: block;
  animation: fadeEffect 1s;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.title {
  margin-top: 15px;
  color: var(--space-cadet);
  font-family: var(--ff-nunito);
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
}

.description {
  margin: 10px 0;
  text-align: left;
  color: var(--independence);
  font-size: var(--fs-6);
  background-color: #0606060d;
  padding: 10px;
  border-radius: 18px;

}

#closePopup {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Adaptación a dispositivos móviles */
@media (max-width: 600px) {
  .popup-content {
    width: 80%;
  }
}

/* Contenedor principal centrado */
.content-container-cu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1070px;
  margin: 0 auto;
  padding: 5vh 0;
  padding: 20px;
  background-color: #ffffff;
  border-radius: var(--radius-18);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid #90caf9;
}

/* Imagen centrada */
.image-cu img {
  width: 100%;
  max-width: 350px;
}



/* Descripción */
.description-cu {
  max-width: 500px;
  text-align: center;
  /* Centrado en pantallas pequeñas */
  padding: 10px;
  color: var(--independence);
}




/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
  .content-container-cu {
    flex-direction: column;

    width: 95%;
    max-width: 500px;
  }

  .description-cu {
    order: -1;
  }




}

/* Ajustes para pantallas grandes */
@media (min-width: 769px) {
  .description-cu {
    text-align: left;
    /* Alinea el texto a la izquierda en pantallas grandes */

  }


}

/* Estilo para la imagen pequeña */
.small-image {
  width: 40px;
  /* Ajusta el tamaño de la imagen pequeña */
  display: block;
  margin: 0;
}

.image-title {
  display: flex;
  align-items: center;
  /* Alineación vertical del ícono y el título */
  gap: 10px;
  /* Espaciado entre el ícono y el título */
}

.icon-container {
  width: 50px;
  /* Ancho del contenedor */
  height: 50px;
  /* Altura del contenedor */
  display: flex;
  align-items: center;
  /* Centrar ícono verticalmente */
  justify-content: center;
  /* Centrar ícono horizontalmente */
  background-color: #e0f7fa;
  border-radius: var(--radius-14);
}

.icon-container i {
  font-size: 24px;
  /* Tamaño del ícono */
  color: #28a745;
  /* Color verde */
}

/* Estilo para el título */
.title-cu {
  font-size: 24px;
  color: #333;
  /* Color del texto */
}





/* Preguntas */
.faq-container {
  width: 95%;
  max-width: 90%;
  background-color: var(--gradient);
  border-radius: var(--radius-18);
  box-shadow: var(--shadow-1);
  padding: 20px;
  margin-inline: auto;
  margin-top: 20px;
  /* Espacio en la parte superior */
  margin-bottom: 20px;
  /* Espacio en la parte inferior */

}

.faq-title {
  text-align: center;
  margin-bottom: 20px;
  color: var(--space-cadet);
  font-family: var(--ff-nunito);
  line-height: 1.4;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  padding: 10px;
  cursor: pointer;
  border: 1px solid #ddd;
  border-radius: var(--radius-14);
  color: var(--space-cadet);
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #e0f7fa;
}

.faq-icon {
  font-size: 25px;
  font-weight: bold;
  color: #00796b;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  color: var(--independence);
  padding: 10px;
  background-color: #e0f7fa;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 14px;
}

.faq-answer.show {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-container {
    width: 100%;
  }
}



/* Calculadora Tarifas */

.container3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5vh 0;
}

.section3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 95%;
  max-width: 500px;
  padding: 20px;
  background-color: #ffffff;
  /* Fondo de la sección */
  border-radius: var(--radius-18);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.title3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* Espacio entre el icono y el texto */
}

.icon-container2 {
  display: flex;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background-color: #e0f7fa;
  /* Color de fondo claro */
  border-radius: var(--radius-14);
}

.icon-container2 i {
  color: #007BFF;
  /* Color del ícono */
  font-size: 24px;
}

.text3 {
  font-size: 16px;
  margin-bottom: 20px;
}

.modal-overlay5 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
  z-index: 9999;
  /* Asegura que el overlay esté por encima de todo */
}

.modal5 {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-header5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header5 h5 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.close-btn5 {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body5 {
  margin-top: 20px;
}

.modal-footer5 {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}

.btn5 {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.button3 {
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #007BFF;
  border: none;
  border-radius: var(--radius-14);
  cursor: pointer;
}

.button3:hover {
  background-color: #0056b3;
}


.btn-secondary5 {
  background-color: #6c757d;
  color: white;
  border: none;
}

select,
table {
  width: 100%;
  height: 40px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 14px;
  margin-bottom: 20px;
  box-sizing: border-box;
  font: inherit;
  color: #313030;
}


.description-container5 {
  background-color: #e3f2fd;
  /* Fondo azul claro */
  border: 2px solid #90caf9;
  /* Borde azul más fuerte */
  border-radius: 14px;
  /* Bordes redondeados */
  padding: 10px;
  /* Espaciado interno */
  position: relative;
  /* Para posicionar el ícono */
  margin-top: 8px;
  /* Separación desde el label */
  margin-bottom: 8px;
  font-size: 0.9em;
  /* Tamaño legible */
  color: #000000;
  /* Texto azul fuerte */
  line-height: 1;
  /* Espaciado entre líneas */
}

.info-icon5 {
  position: absolute;
  /* Posición absoluta dentro del contenedor */
  top: 8px;
  /* Separación desde arriba */
  right: 8px;
  /* Separación desde la derecha */
  font-size: 1.2em;
  /* Tamaño del ícono */
  color: #1565c0;
  /* Color del ícono */
}

.description5 {
  margin: 0;
  /* Sin margen extra */
}


.result-box5 {
  background-color: #e0f7fa;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  border: 1px solid #b2ebf2;
}

.details5 {
  margin-top: 10px;
  font-size: 0.9em;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Espaciado entre los grupos */
}

.tariff-table5 {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.tariff-table5 th,
.tariff-table5 td {
  border: 1px solid #b2ebf2;
  text-align: center;
  padding: 8px;
}

.tariff-table5 th {
  background-color: #b2ebf2;
  font-weight: bold;
}

.d-none5 {
  display: none;
}

@media (max-width: 600px) {
  .modal5 {
    width: 90%;
    height: auto;
    padding: 15px;
  }
}






/* Popup */
.popup5 {
  display: none;
  /* Oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Fondo semi-transparente */
  z-index: 1000;
  /* Encima de todo */
  align-items: center;
  /* Centrado vertical */
  justify-content: center;
  /* Centrado horizontal */
}

/* Contenido del popup */
.popup-content5 {
  background-color: #e3f2fd;
  /* Fondo azul claro */
  padding: 20px;
  border-radius: 14px;
  /* Bordes redondeados */
  max-width: 90%;
  /* Responsivo */
  width: 400px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Contenedor del icono */
.icon-container5 {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border: 2px solid #25d366;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

/* Estilo del ícono */
.icon-container5 i {
  font-size: 1.5em;
  color: #25d366;
}

/* Título y texto */
.popup-content5 h2 {
  margin-top: 40px;
  /* Ajustar el espacio por el icono */
  color: #000000;
}

.popup-content5 p {
  font-size: 0.9em;
  color: #333;
  margin-bottom: 20px;
}

/* Botón de llamada */
.call-button5 {
  position: relative;
  background: #25d366;
  color: rgb(0, 0, 0);
  min-width: var(--width, 120px);
  min-height: var(--height, 40px);
  padding: 5px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-14);
  font-family: var(--ff-nunito);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-2);
  transition: var(--transition);
}

.call-button5::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(0, 0%, 100%, 0.4), transparent);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.call-button5:is(:hover, :focus) {
  box-shadow: var(--shadow-2);
}

.call-button5:is(:hover, :focus)::before {
  opacity: 1;
}


/* Botón de cierre */
.close-button5 {
  padding: 8px 16px;
  background-color: #d32f2f;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.close-button5:hover {
  background-color: #b71c1c;
}


.tidio-chat iframe {
  position: relative;
}

.overlay-hide-branding {
  position: absolute;
  bottom: 10px;
  /* Ajusta según la posición del branding */
  right: 20px;
  width: 120px;
  /* Ajusta el tamaño del área a cubrir */
  height: 20px;
  background: white;
  /* O usa el color de fondo de tu widget */
  z-index: 9999;
}





/**
   * Etiqueta en las categorias
   */
   .insurance-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ffcc00; /* Amarillo brillante */
    color: #000000; /* Texto oscuro */
    font-weight: bold;
    font-size: 14px;
    padding: 2px 10px;
    border-radius: 15px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
  }
  .insurance-badge-verde {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #25d366; /* Amarillo brillante */
    color: #000000; /* Texto oscuro */
    font-weight: bold;
    font-size: 14px;
    padding: 2px 10px;
    border-radius: 15px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
  }
  

  /**
   * Sitio Verificado
   */
   .verified-site {
    all: initial;
    position: fixed !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background-color: #0F9D58 !important;
    color: white !important;
    padding:9px 11px !important;
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.15) !important;
    z-index: 9999 !important;
    font-family: Arial, sans-serif !important;
  }
  
  .verified-site-content {
    writing-mode: vertical-rl !important;
    text-orientation: mixed !important;
    font-size: 13px !important;
    font-weight: normal !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    color: white !important;
  }
  
  .verified-site-content i {
    transform: rotate(90deg) !important;
    font-size: 16px !important;
    font-weight: normal !important;
    color: white !important;
  }
  



/**
   * Pago Seguro
   */
  .payment-image-container {
    text-align: right;
    margin-top: 1rem;
  }
  
  .payment-logos {
    max-width: 300px;
    height: auto;
  }
  
  /* Responsive: centrar en móviles */
  @media (max-width: 768px) {
    .payment-image-container {
      text-align: center;
    }
  
    .payment-logos {
      max-width: 90%;
    }
  }
  