:root {
  --blanco: #ffffff;
  --negro: #000000;
  --fuentes: "Arial";
  --color-1: #005296;
  --color-2: #f5f5f5;
  --color-3: #5d5d5d;
  --color-4: #959595;
  --color-5: #efefef;
  --color-6: #858585;
  --color-7: #ebf9ff;
}

@font-face {
  font-family: "monserrat";
  src: url("/assets/font/Montserrat-VariableFont_wght.ttf") format("truetype"); /* Ruta del archivo de la fuente bold */
}

@font-face {
  font-family: "monserrat-italic"; /* Nombre de la familia de fuentes local */
  src: url("../font/Montserrat-Italic-VariableFont_wght.ttf") format("truetype"); /* Ruta local del archivo de la fuente regular */
  /* Agregar más formatos y propiedades según sea necesario */
}

html {
  box-sizing: border-box;
  font-size: 62.5% /* 1rem=10px */;
  font-family: "monserrat", sans-serif;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

input,
button,
option {
  font-family: "monserrat", sans-serif;
}

/* globales 1 */

h1 {
  font-weight: 700;
  font-size: 2.4rem;
}

h2 {
  font-size: 2.4rem;
  font-weight: 700;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

h4 {
  font-size: 1.6rem;
  font-weight: 600;
}

h5 {
  font-size: 1.6rem;
  font-weight: 400;
}

h6 {
  font-size: 1.6rem;
  font-weight: 400;
}

ul {
  font-size: 1.6rem;
  font-weight: 500;
}

p {
  font-size: 1.2rem;
}

li {
  font-size: 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.selected {
  border: 2px solid #007bff !important; /* Color azul */
}

/* globales 1  */

.body-v1 {
  background-color: var(--blanco);
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "monserrat", sans-serif;
}

.container section {
  width: 90%;
}

/* header ------------------------------------------------ */

.header {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding: 25px 40px;
}

.header__container {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.header__div1 {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.header__div1 img {
  width: 50%;
}

.header__div2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.header__div2 img {
}

/* header ------------------------------------------------ */

/* cotización */

.cotizacion {
  font-family: "monserrat", sans-serif;
  background-color: var(--color-1);
  color: var(--blanco);
  background-image: url(../img/autoglass-banner.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 200px;
}

.cotizacion__title {
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  text-align: center;
}

/* cotización */

/* ------------------- PROCESO --------------------*/

/* --- Contenedor Principal --- */
.stepper-wrapper {
    width: 100%;
    padding: 30px 0;
    background-color: #fbfcff;
    margin-bottom: 25px;
}

.stepper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 750px; /* Un poco más angosto para mejor proporción */
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
}

/* --- La Línea de Fondo (GRIS REDONDEADA) --- */
.stepper::before {
    content: "";
    position: absolute;
    top: 19px; /* Ajustado al nuevo tamaño de círculo */
    left: 40px;
    right: 40px;
    height: 4px; /* Un pelín más gruesa para que luzca el redondeado */
    background-color: #e8e8e8;
    z-index: 1;
    border-radius: 10px; /* Bordes redondeados */
}

/* --- La Línea de Progreso (AZUL REDONDEADA) --- */
.stepper-progress-bar {
    position: absolute;
    top: 19px;
    left: 40px;
    height: 4px;
    background-color: #005296;
    z-index: 2;
    border-radius: 10px; /* Bordes redondeados */
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Items del Paso --- */
.step-item {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

/* El Círculo (MÁS PEQUEÑO) */
.step-counter {
    font-family: "DM Sans", sans-serif;
    width: 38px; /* Bajamos de 50px a 38px */
    height: 38px;
    background-color: #fff;
    border: 2px solid #e0e0e0; /* Borde más fino */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 14px; /* Número más pequeño */
    color: #aaa;
    transition: all 0.3s ease;
}

/* El Texto */
.step-label {
    font-size: 12px; /* Un punto más pequeño */
    color: #999;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

/* --- ESTADOS --- */

/* 1. Paso Completado */
.step-item.completed .step-counter {
    background-color: #005296;
    border-color: #005296;
    color: #fff;
}

/* 2. Paso Activo */
.step-item.active .step-counter {
    background-color: #fff;
    border-color: #005296;
    color: #005296;
    box-shadow: 0 0 10px rgba(0, 82, 150, 0.15);
}

.step-item.active .step-label {
    color: #005296;
    font-weight: 700;
}
/* PROCESO FIN */

/* formulario */

.formulario {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}

.formulario__ciudad-marca {
  width: 72%;
}

.formulario__title {
  padding: 5px 0;
  border-bottom: 1px solid;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 600;
}

.formulario__title-2 {
  color: var(--color-1);
  padding: 5px 0;
  border-bottom: 1px solid;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 600;
}

.formulario__form {
  display: flex;
  flex-direction: column;
  color: var(--color-6);
  border: none;
  background: none;
  margin-bottom: 10px;
}

.formulario__form form {
  border: none;
}
.formulario__form select {
  background-color: var(--blanco);
  color: var(--color-6);
  margin-bottom: 20px;
  height: 35px;
  font-size: 1.4rem;
  font-weight: 600;
  border-color: var(--blanco);
  border-bottom: 1px solid var(--color-6);
}

.formulario__form input {
  background-color: var(--blanco);
  height: 45px;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid;
  border-color: 1px solid var(--color-6);
  padding: 0 3%;
}

.formulario__form input:focus {
  background-color: var(--color-7);
  border: 1px solid var(--color-1); /* Cambia el '2px' al grosor deseado */
  outline: none;
}

.formulario__form button {
  background-color: var(--blanco);
  height: 45px;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid;
  border-color: var(--color-6);
  color: var(--color-6);
  text-align: left;
  padding-left: 10px;
}

/* ------------------ */

.formulario-2 {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.formulario-2__ciudad-marca {
  width: 45%;
}

.formulario-2__title {
  padding: 5px 0;
  border-bottom: 1px solid;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 600;
}

.formulario-2__title-2 {
  color: var(--color-1);
  padding: 5px 0;
  border-bottom: 1px solid;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 600;
}

.formulario-2__form {
  display: flex;
  flex-direction: column;
  color: var(--color-6);
  border: none;
  background: none;
  margin-bottom: 10px;
}

.formulario-2__form form {
  border: none;
}
.formulario-2__form select {
  background-color: var(--blanco);
  color: var(--color-6);
  margin-bottom: 20px;
  height: 35px;
  font-size: 1.4rem;
  font-weight: 600;
  border-color: var(--blanco);
  border-bottom: 2px solid var(--color-4);
}

.formulario-2__form input {
  background-color: var(--blanco);
  height: 45px;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid var(--color-6);
  padding: 0 3%;
}

.formulario-2__form input:focus {
  background-color: var(--color-7);
  border: 1px solid var(--color-1); /* Cambia el '2px' al grosor deseado */
  outline: none;
}

/* .formulario-2__form :focus {
  background-color: var(--color-7);
} */

.formulario-2__form button {
  background-color: var(--blanco);
  height: 45px;
  font-size: 1.4rem;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid;
  border-color: var(--color-6);
  color: var(--color-6);
  text-align: left;
  padding-left: 10px;
}

/*  collapse section  -------------------------- */

#collapseContent {
  width: 100%;
  display: none;
  background: #F0FBFF;
  padding: 25px 10px;
}

#collapseContent input {
  width: 100%;
  margin-bottom: 10px;
}

#collapseContent h3 {
  color: var(--negro);
  margin-bottom: 10px;
}

#collapsecontent h4 {
}

#collapseContent img {
  width: 60%;
}

.collapseContent-img {
  width: 5%;
  position: relative;
  top: -46px;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
  margin-left: 90%;
}

#formCollapseButton {
  cursor: pointer;
}

/* --- */

#collapseContent2 {
  width: 100%;
  display: none;
  background: #F0FBFF;
  padding: 25px 10px;
}

#collapseContent2 input {
  width: 100%;
  margin-bottom: 10px;
}

#collapseContent2 h3 {
  color: var(--negro);
  margin-bottom: 10px;
}

#collapsecontent2 h4 {
}

#collapseContent2 img {
  width: 60% !important;
}

.collapseContent-img-2 {
  width: 5%;
  position: relative;
  top: -46px;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
  margin-left: 90%;
}

#formCollapseButton2 {
  cursor: pointer;
}

/* ---- */

#collapseContent3 {
  width: 100%;
  display: none;
  background: #F0FBFF;
  padding: 25px 10px;
}

#collapseContent3 input {
  width: 100%;
  margin-bottom: 10px;
}

#collapseContent3 h3 {
  color: var(--negro);
  margin-bottom: 10px;
}

#collapsecontent3 h4 {
}

#collapseContent3 img {
  width: 60% !important;
}

.collapseContent-img-3 {
  width: 5%;
  position: relative;
  top: -45px;
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
  margin-left: 90%;
}

#formCollapseButton3 {
  cursor: pointer;
}

/* collapse section end  ---------------------------- */

.formulario__maps {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
}

/* formulario */

/* button formulario  */

.buttonFormContent {
  width: 100%;
  display: flex;
  flex-direction: row;
  font-size: 1.4rem;
  gap: 25px;
  justify-content: flex-end;
}

.buttonFormContent button {
  width: 110px;
  height: 45px;
  border-radius: 24px;
  font-weight: 600;
}

.buttonFormContent__1 {
  background-color: var(--blanco);
  cursor: pointer;
  border: 1px solid;
  border-color: var(--color-1);
}

.buttonFormContent__2 {
  background-color: var(--color-1);
  border: var(--color-1) solid;
  cursor: pointer;
}

.buttonFormContent__3 {
  background-color: var(--color-1) !important;
  cursor: pointer;
  border: 1px solid;
  border-color: var(--color-1);
  color: var(--blanco) !important;
}

/* button formulario  */

/* datos error -------------------------------------------------------------------------------- */

.plan {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.plan__div {
  width: 100%;
}

.plan__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan__form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan__form input {
  padding: 10px 0 10px 5%;
  border-radius: 5px;
  border: 1px solid;
  font-family: "monserrat", sans-serif;
  font-size: 1.4rem;
  height: 50px;
  background-color: var(--blanco);
}

.form-example {
  display: contents;
}

#planContentButton {
  display: flex;
  justify-content: center;
}

#planButton {
  width: 50%;
  padding: 10px 0;
  border: none;
  border-radius: 24px;
  background-color: var(--color-1);
  color: var(--blanco);
  height: 45px;
  cursor: pointer;
}

/* Estilos para el contenedor del botón de carga */
.upload-container {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 100%;
  flex-direction: column;
  border: var(--color-1) 1px solid;
  border-radius: 5px;
  height: 50px;
  justify-content: center;
  text-align: start;
  font-size: 1.4rem;
}

/* Estilos para el botón de carga */
.upload-button {
  background-color: transparent;
  color: var(--negro);
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
  padding-left: 5%;
}

/* Estilo para el input de tipo file */
.file-input {
  position: absolute;
  font-size: 100px;
  right: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}
/* Estilos para el contenedor del botón de carga */

/* datos error -------------------------------------------------------------------------------- */

/* tipo de plan ------------------------------------------------------------------------------------------ */

.planesContainer {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1.6%;
  justify-content: center;
}

/* ------------------------------------------------------------------------------------------------------------- */

.planesCont {
  width: 33%;
  border: 1px solid;
  border-radius: 4px;
  height: 100%;
  text-align: left;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  cursor: pointer;
}

.planesCont:hover {
  border-color: var(--color-1);
}

.planesCont__circle {
  width: 100%;
}

.planesCont span {
  font-weight: 700;
}

.planesCont2 span {
  font-weight: 700;
}

.planesCont3 span {
  font-weight: 700;
}

/* ----------------------------- */

.planesCont__circle--1 {
  width: 7%;
}

.planesCont__circle--1--selected {
  width: 7%;
  background-color: var(--color-1);
  border-radius: 50px;
  background-image: url(../img/check_small-02.png);
  width: 7%;
  background-size: cover;
  background-position: center;
}

.planesCont__circle img {
  width: 100%;
}

/* -------------------------------------- */

.planesCont__circle--2 {
  width: 7%;
}

.planesCont__circle--2--selected {
  width: 7%;
  background-color: var(--color-1);
  border-radius: 50px;
  background-image: url(../img/check_small-02.png);
  width: 7%;
  background-size: cover;
  background-position: center;
}

.planesCont__circle--2 img {
  width: 100%;
}

/* ---------------------------------------- */

.planesCont__circle--3 {
  width: 7%;
}

.planesCont__circle--3--selected {
  width: 7%;
  background-color: var(--color-1);
  border-radius: 50px;
  background-image: url(../img/check_small-02.png);
  width: 7%;
  background-size: cover;
  background-position: center;
}

.planesCont__circle--3 img {
  width: 100%;
}

/* ------------------------------------------------------- */

/* -------------------------------------------------------- */

.planesCont__precio {
  color: var(--color-1);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: left;
}

.planesCont__precio div {
  width: 100%;
}

/* selected -------------- */
.planesCont--selected {
  border: 2px solid var(--color-1); /* Azul, pero siente libre de ajustar el color */
  box-shadow: 0 0 10px var(--color-1); /* Opcional: para dar más énfasis */
}

.planesCont__circle--1 {
}

/* ------------------------------------------------------------------------------------------------------ */

.planesCont2 {
  width: 33%;
  border: 1px solid;
  border-radius: 4px;
  height: 100%;
  text-align: left;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  cursor: pointer;
}

.planesCont2:hover {
  border-color: var(--color-1);
}

.planesCont2__circle {
  width: 100%;
}

.planesCont2__circle--1 {
  width: 7%;
}

.planesCont2__circle img {
  width: 100%;
}

.planesCont2__precio {
  color: var(--color-1);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: left;
  padding-left: 5%;
}

.planesCont2__precio div {
  width: 100%;
}

/* ------------------------------------------------------------------------------------------------------ */

.planesCont3 {
  width: 33%;
  border: 1px solid;
  border-radius: 4px;
  height: 100%;
  text-align: left;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  cursor: pointer;
}

.planesCont3:hover {
  border-color: var(--color-1);
}

.planesCont3__circle {
  width: 100%;
}

.planesCont3__circle--1 {
  width: 7%;
}

.planesCont3__circle img {
  width: 100%;
}

.planesCont3__precio {
  color: var(--color-1);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: left;
  padding-left: 5%;
}

.planesCont3__precio div {
  width: 100%;
}

.pPrecio {
  position: relative;
  color: var(--blanco);
  height: 5px;
}

.pPrecio__4 {
  position: relative;
  color: var(--color-1);
}

/* ------------------------------------------------------------------------------------ */

.planesContWidth {
}

/* tipo de plan ------------------------------------------------------------------------------------------ */

/* resumen ---------------------------------------------------------------------------------------------- */

.resumenCarrito {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 5%;
}

.resumenCarrito h4 {
  color: var(--color-6);
}

.resumenCarrito__cart1 {
  display: flex;
  flex-direction: column;
  width: 60%;
}

.resumenCarrito__border-bottom {
  border-bottom: 1px solid;
  border-color: var(--color-6);
  padding: 25px 0;
}

.resumenCarrito__cart1--datos {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: flex-end;
}

.resumenCarrito__cart1--datos-producto {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.cantidad {
  display: flex;
  height: 50px;
  align-items: center;
}

#botones {
  display: flex;
  flex-direction: row;
  height: 60px;
  padding: 5px 0;
  justify-content: flex-end;
}

/*--------------------------------------- */

#botones button {
  background: transparent;
  border: 1px solid;
  border-color: var(--color-6);
  padding: 10px;
  font-size: 2rem;
}

#botones input {
  padding: 12px 0;
  width: 5vmin;
  text-align: center;
  border: 1px solid;
  border-color: var(--color-6);
  background-color: transparent;
  font-size: 2rem;
  font-weight: 500;
}

#botones__button {
  height: 50px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: flex-end;
}

#botones__img {
  width: 15%;
}

.boton-left {
  border-radius: 10px 0 0 10px;
}

.boton-right {
  border-radius: 0 10px 10px 0;
}

/* -------------------------------- */

.resumenCarrito__cart1--auto {
}

.resumenCarrito__cart1--personal {
  display: flex;
  flex-direction: row;
}

.resumenCarrito__cart1--personal-info {
  width: 60%;
}

/* ----------- */

.buttonFormContent-personal {
  width: 100%;
  display: flex;
  flex-direction: row;
  font-size: 1.4rem;
  gap: 25px;
  justify-content: flex-end;
  color: var(--blanco);
  align-items: center;
}

/* button */

.buttonFormContent-personal button {
  width: 50%;
  height: 45px;
  border-radius: 24px;
  font-weight: 600;
}

.buttonFormContent-personal__1 {
  background-color: var(--blanco);
  cursor: pointer;
  border: 1px solid;
  border-color: var(--color-1);
}

.buttonFormContent-personal__2 {
  background-color: var(--color-1);
  border: var(--color-1) solid;
  cursor: pointer;
}

.resumenCarrito__cart2 {
  width: 40%;
  border: 1px solid;
  border-color: var(--color-6);
  padding: 40px 1.25%;
}

.resumenCarrito__cart2--total {
}

.descargarPdf {
  margin-bottom: 10px;
  text-align: center;
}

.resumenCarrito__cart2--subtotal {
}

.resumenCarrito__cart2--detalles {
}

.resumenCarrito__cart2--pagos {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.resumenCarrito__cart2--pagos img {
  width: 100%;
}

.resumenCarrito__cart2--pagos-iconos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

.resumenCarrito__cart2--pagos-iconos div {
  width: 18%;
}

/* button form pagos */

.buttonFormContent-pagos {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  gap: 10px;
  justify-content: flex-end;
}

.buttonFormContent-pagos button {
  width: 100%;
  height: 45px;
  border-radius: 24px;
  font-weight: 600;
  border: 1px solid;
}

.buttonFormContent-pagos__1 {
  background-color: var(--blanco);
  cursor: pointer;
}

.buttonFormContent-pagos__2 {
  background-color: var(--color-1);
  border: var(--color-1) solid;
  cursor: pointer;
}

/* ------------------------------------ */

.buttonFormContent-pagos-2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  font-size: 1.4rem;
  gap: 25%;
  justify-content: flex-end;
  height: 100%;
  align-items: flex-end;
}

.buttonFormContent-pagos-2 button {
  width: 100%;
  height: 45px;
  border-radius: 24px;
  font-weight: 600;
  border: 1px solid;
}

.buttonFormContent-pagos-2__1 {
  background-color: var(--blanco);
  cursor: pointer;
}

.buttonFormContent-pagos-2__2 {
  background-color: var(--color-1);
  border: var(--color-1) solid;
  cursor: pointer;
}

/* resumen ---------------------------------------------------------------------------------------------- */

/* cotización 2 actualizacion ---------------------------------------------------------------------------------------------- */

/* servicio ---------------------------- */

.servicio {
  width: 70% !important;
}

.servicio__content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2%;
}

/* selected */

.servicio__cart {
  width: 50%;
  border: 2px solid;
  border-color: var(--color-6);
  display: flex;
  flex-direction: column;
  padding: 10px 0px 0px 0px;
  border-radius: 4px;
  align-items: center;
}

.servicio__cart--2 {
  width: 50%;
  border: 2px solid;
  border-color: var(--color-6);
  display: flex;
  flex-direction: column;
  padding: 10px 0px 0px 0px;
  border-radius: 4px;
  align-items: center;
}

.servicio__cart--3 {
  width: 50%;
  border: 2px solid;
  border-color: var(--color-6);
  display: flex;
  flex-direction: column;
  padding: 10px 0px;
  border-radius: 4px;
  align-items: center;
}

.servicio__cart--4 {
  width: 50%;
  border: 2px solid;
  border-color: var(--color-6);
  display: flex;
  flex-direction: column;
  padding: 10px 0px 0px 0px;
  border-radius: 4px;
  align-items: center;
}

/* selected -------------- */
.servicio__cart--selected {
  border: 2px solid #007bff; /* Azul, pero siente libre de ajustar el color */
  box-shadow: 0 0 10px #18191a66; /* Opcional: para dar más énfasis */
}
/* selected -------------- */

.servicio img {
  width: 100%;
}

.servicio__text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.servicio__img {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* --------------------------------------------------------- */

.servicioCartDiv {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  padding: 0 5%;
  align-items: center;
}

.servicioCartDiv2 {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  padding: 0 5%;
  align-items: center;
}

.servicioCartDiv3 {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  padding: 0 5%;
  align-items: center;
}

.servicioCartDiv4 {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  padding: 0 5%;
  align-items: center;
}

/* --------------------------------------------------------- */

.repararCont {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5%;
  display: none;
}

.repararCont__parabrisas {
  width: 47.5%;
  border: 1px solid var(--color-4);
  border-radius: 4px;
  padding: 5% 0;
  margin: 5% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.repararCont__parabrisas p {
  text-align: center;
  line-height: 15px;
  font-weight: 400;
}

.repararCont__parabrisas span {
  font-size: 1.4rem;
  font-weight: 700;
}

.repararCont__parabrisas--texto {
  width: 100%;
  padding: 0 7%;
}

.repararCont__parabrisas--img {
  width: 100%;
}

/* Estilo para cuando repararCont esté visible */
.repararCont.visible {
  display: flex;
  /* Puedes agregar transiciones si quieres efectos visuales */
  transition: all 0.3s ease;
  margin-top: 5%;
  padding: 0 5%;
}

.repararContCheckBox {
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.repararContCheckBox input {
  width: 20px;
  height: 20px;
}

.repararContCheckBox label {
  font-size: 1.2rem;
}

/* visible ------------- */
.repararContCheckBox.visible {
  display: flex;
  transition: all 0.3s ease;
  margin-bottom: 5%;
}

.repararCont__parabrisas2 {
  width: 47.5%;
  border: 1px solid var(--color-4);
  border-radius: 4px;
  padding: 5% 0;
  margin: 5% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.repararCont__parabrisas2 p {
  text-align: center;
  line-height: 15px;
}

.repararCont__parabrisas2 span {
  font-size: 1.4rem;
  font-weight: 700;
  font-weight: 600;
}

.repararCont__parabrisas2--texto {
  width: 100%;
  padding: 0 25%;
}

.repararCont__parabrisas2--img {
  width: 100%;
}
/* ------------------------------------------ */
.repararContCheckBox__casilla {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
/* servicio END ---------------------------- */

/* popup --------------------------------------------------------------------------------------------------- */
/* Estilo para el fondo oscurecido */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
}

/* Estilo para el popup */
.popup {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px #000;
  width: 50%;
  display: flex;
  flex-direction: column;
}

.popupButton {
  width: 4%;
  background: none;
  border: none;
  text-align: left;
  padding: 0;
  font-size: 1.6rem;
}

.popupDiv1 {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin: 2% 0;
}

.popupDiv1 h4 {
  text-align: justify;
  padding: 5% 0;
  font-size: 1.1rem;
}

.popupDiv1 p {
  text-align: justify;
}

.popupDiv1 img {
  width: 100%;
}

.popupDiv1__text {
  width: 35%;
}

.popupDiv1__text--title {
  border-bottom: 1px solid var(--negro);
  margin-bottom: 5%;
}

.popupDiv1__text--paragraph {
}

.popupDiv1__img {
  width: 65%;
  padding-left: 5%;
}

.popupDiv2 {
  display: flex;
  flex-direction: row;
  gap: 5%;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  border: solid var(--negro) 1px;
  border-radius: 4px;
  padding: 10px;
}

.popupDiv2__contador {
}

.popupDiv2__contador--bl {
  border-radius: 4px 0 0 4px;
}

.popupDiv2__contador--br {
  border-radius: 0 4px 4px 0;
}

.popupDiv3 {
  margin: 2% 0;
}

.popupDiv3__continuar {
  justify-content: flex-start;
}

.popupDiv4 {
  width: 50%;
}

/* --------------------------------------------------------------------------------- */

.popupMaps {
  position: fixed; /* Cambiado de absolute a fixed para posicionar respecto a la ventana del navegador */
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  width: 382px;
  height: 900px;
  top: 50%; /* Centrar verticalmente */
  left: 50%; /* Centrar horizontalmente */
  transform: translate(-50%, -50%); /* Ajustar precisamente al centro */
}

.popupMapsClose {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.popupMapsContainer {
}
.popupMapsContainer input {
  width: 100%;
  margin: 5% 0;
}

.popupMapsContainer_button-1 {
  width: 100%;
  height: 45px;
  border-radius: 24px !important;
  font-weight: 600;
  background-color: var(--color-1) !important;
  color: var(--blanco) !important;
  text-align: center !important;
}

.popupMapsContainer_input-1 {
  width: 100%;
  height: 45px;
  border-radius: 24px !important;
  font-weight: 600;
  background-color: var(--blanco) !important;
  color: var(--color-6) !important;
  text-align: center !important;
}
/* popup END --------------------------------------------------------------------------------------------------- */

/* pg2 - lado del copiloto */
.copilotSelection-menu {
  width: 100%;
  border-radius: 0px;
}

.copilotOption {
  padding: 10px;
  border-bottom: 1px solid var(--color-6);
  cursor: pointer;
  background: none;
  height: 45%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.copilotOption:last-child {
  border-bottom: none;
}

/*  .copilotOption:hover {
  background-color: var(--color-1);
} */

.copilotOption.selected {
  background: none;
  border: 1px solid var(--color-1);
  color: #333;
  font-weight: bold;
}

.copilotOption__text {
  display: flex;
  align-items: center;
}

.copilotOption__img {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.copilotImg {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  z-index: -1;
  margin-bottom: -150px;
}

.copilotImg div {
  width: 30%;
  height: 45%;
  margin-bottom: 7px;
}

.copilotImg img {
  width: 100%;
}

/* --------------- lado del conductor */
/* pg2 - lado del conductor */
.driverSelection-menu {
  width: 100%;
  border-radius: 0px;
}

.driverOption {
  padding: 10px;
  border-bottom: 1px solid var(--color-6);
  cursor: pointer;
  background: none;
  height: 45%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.driverOption:last-child {
  border-bottom: none;
}

/* .driverOption:hover {
  background-color: #f0f0f0;
} */

.driverOption__text {
  display: flex;
  align-items: center;
}

.driverOption__img {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.driverOption.selected {
  background: none;
  border: 1px solid var(--color-1);
  color: #333;
}

.driverImg {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  top: -155px;
  z-index: -1;
  margin-bottom: -150px;
}

.driverImg div {
  width: 30%;
  height: 45%;
  margin-bottom: 7px;
}

.driverImg img {
  width: 100%;
}

/* ----------------------------------------------------------- */
.copilotContainer {
  display: none;
}

/* Estilo para cuando repararCont esté visible */
.copilotContainer.visible {
  display: flex;
  flex-direction: column;
  /* Puedes agregar transiciones si quieres efectos visuales */
  transition: all 0.3s ease;
  width: 100%;
}
/* ----------------------------------------------------------- */
.copilotContainer2 {
  display: none;
}

/* Estilo para cuando repararCont esté visible */
.copilotContainer2.visible {
  display: flex;
  flex-direction: column;
  /* Puedes agregar transiciones si quieres efectos visuales */
  transition: all 0.3s ease;
  width: 100%;
}

/* pg2 - lado del copiloto END */

/* -------------------  parabrisas trasero  -------------------------- */

.parabrisasTSelection-menu {
  width: 100%;
  border-radius: 0px;
}

.parabrisasTContainer {
  display: none;
}

/* Estilo para cuando repararCont esté visible */
.parabrisasTContainer.visible {
  display: flex;
  flex-direction: column;
  /* Puedes agregar transiciones si quieres efectos visuales */
  transition: all 0.3s ease;
  width: 100%;
}

.parabrisasTOption {
  padding: 10px;
  border-bottom: 1px solid var(--color-6);
  cursor: pointer;
  background: none;
  height: 45%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.parabrisasTOption.selected {
  background: none;
  border: 1px solid var(--color-1);
  color: #333;
  font-weight: bold;
}

.parabrisasTOption__text {
  display: flex;
  align-items: center;
}

.parabrisasTOption__img {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.parabrisasTImg {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  z-index: -1;
  margin-bottom: -150px;
}

.parabrisasTImg div {
  width: 30%;
  height: 45%;
  margin-bottom: 7px;
}

.parabrisasTImg img {
  width: 100%;
}

/* -------------------  parabrisas trasero END -------------------------- */

/* --- section continue back --- */

/* --- section continue back --- */

/* cotización 2 actualizacion END ---------------------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */

.checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2%;
}

.checkbox,
.checkboxSensor p {
  font-size: 1.6rem;
}

.checkbox img {
  width: 100%;
}

.checkbox__text {
}

.checkbox__img,
.checkboxSensor__img {
  width: fit-content;
}

.checkbox__img:active {
  background-color: var(--color-1);
}

.checkbox__img.selected {
  background-color: var(
    --color-1
  ); /* Color de fondo cuando está seleccionado */
}

/* ------------------------------------------- */
.checkbox__input input {
  width: 30px;
  height: 30px;
}
/* -------------------------------------------------------------------------- */
.checkboxSensorContainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkboxSensor {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2%;
  padding: 0 5%;
}

.checkboxSensor p {
  font-size: 1.6rem;
}

.checkboxSensor img {
  width: 100%;
}

.checkboxSensor__text {
}

.checkboxSensor__img {
  width: fit-content;
  padding: 5px;
  border: 1px solid black;
  border-radius: 4px;
}

.checkboxSensor__img:active {
  background-color: var(--color-1);
}

.checkboxSensor__img.selected {
  background-color: var(
    --color-1
  ); /* Color de fondo cuando está seleccionado */
}
/* full calendar */

.full-calendar {
}

/* full calendar */

/* --------------------------------------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
}

.modal-content h2 {
  width: 50%;
  border-bottom: 1px solid var(--negro);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modalTextContainer {
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin: 1% 0;
  padding: 5%;
  text-align: justify;
}
/* ------------------------------------------------------------------------------------- */
/* footer */

.payments {
  display: none;
}

.compraSegura {
  display: none;
}

.footer {
  width: 100%;
  height: 92px;
  background-color: var(--negro);
  color: var(--blanco);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.footer-2 {
  width: 100%;
  height: 92px;
  background-color: var(--negro);
  color: var(--blanco);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.footer-3 {
  width: 100%;
  height: 92px;
  background-color: var(--negro);
  color: var(--blanco);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* footer END */

/*imprimir datos en resumen de compra ---------------------------------------------------------------------*/
.resumenCarrito__producto h6,
.resumenCarrito__vehiculo h6,
.resumenCarrito__personales h6,
.resumenCarrito__detalles h6 {
  font-size: 1.7rem;
  font-weight: 700;
}
.resumenCarrito__producto p,
.resumenCarrito__vehiculo p,
.resumenCarrito__personales p,
.resumenCarrito__detalles p {
  font-weight: 600;
  color: var(--color-4);
}
.resumenCarrito__producto span,
.resumenCarrito__vehiculo span,
.resumenCarrito__personales span,
.resumenCarrito__detalles span {
  font-weight: 700;
  color:var(--negro);
}
/*imprimir datos en resumen de compra END---------------------------------------------------------------------*/
/* globales 2  */

.width-100 {
  width: 100%;
}

.width-50 {
  width: 50%;
}

/* padding de 2.5% izq y der para 3 elementos con width 30% x 3  */

.padding-0-1_25 {
  padding: 0 1.25%;
}

.padding-20-1_25 {
  padding: 20px 1.25%;
}

.padding-0-2_5 {
  padding: 0 2.5%;
}

.padding-0-5 {
  padding: 0 5%;
}

.padding-0-10 {
  padding: 0 10%;
}

.padding-0-15 {
  padding: 0 15%;
}

.padding-0-20 {
  padding: 0 20%;
}

.padding-0-25 {
  padding: 0 25%;
}

.padding-0-35 {
  padding: 0 35%;
}

.padding-25-10 {
  padding: 25px 10px;
}

.paddingB-100 {
  padding-bottom: 100px;
}

.marginB-10 {
  margin-bottom: 10px;
}

.marginB-50 {
  margin-bottom: 50px;
}

.marginB-75 {
  margin-bottom: 75px;
}

.marginB-100 {
  margin-bottom: 100px;
}

.margin-50-0 {
  margin: 50px 0;
}

.marginT-10 {
  margin-top: 10px;
}

.paddingT-150 {
  padding-top: 150px;
}

.sectionLine-1 {
  width: 60%;
}

.sectionLine-2 {
  width: 100% !important;
  display: flex;
  justify-content: center;
}

.sectionLine-3 {
  width: 90% !important;
}

.sectionLine-4 {
  width: 85% !important;
}

.sectionLine-5 {
  width: 90% !important;
}

.line {
  width: 100%;
  border-bottom: 1px solid var(--color-4);
  height: 5px;
  width: 100%;
  margin-bottom: 25px;
}

.line-blue {
  border-bottom: 1px solid;
  border-color: var(--color-1);
  height: 5px;
  width: 90%;
  margin-top: 10px;
}

.textAlignCenter {
  text-align: center;
}

.color-1 {
  color: var(--color-1);
}

.color-3 {
  color: var(--color-6);
}

.black {
  color: var(--negro);
}

.background-color-5 {
  background-color: var(--color-5);
}

.flex {
  display: flex;
}

.flex-end {
  align-items: flex-end;
}

.height-100 {
  height: 100%;
}

.gap-10 {
  gap: 10px;
}

.form-padding-left input {
  padding-left: 10px;
}

.lineHeight-5 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.overflow-x-auto {
  overflow-x: auto;
}

.planMargin-0 {
}

.text-center {
  text-align: center;
}

.sectionWidth-100 {
  width: 100% !important;
}

.display-none {
  display: none;
}

.formulario-width-1 {
  width: 60% !important;
}

.plan-width {
  width: 33% !important;
}

.buttonTop {
  margin-top: 10%;
}

.display-center {
  display: flex;
  justify-content: center;
}

.rowReverse {
  flex-direction: row-reverse;
}

/* globales 2  */

/* testing */

/* testing */

/* media queries ------------------------------------------------------------------------------------- */

/* 280px */

@media (min-width: 280px) and (max-width: 319px) {
  /* fuentes globales */
  h1 {
    font-weight: 700;
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
    font-weight: 700;
  }

  h3 {
    font-size: 1.1rem;
    font-weight: 600;
  }

  h4 {
    font-size: 0.8rem;
    font-weight: 600;
  }

  h5 {
    font-size: 0.8rem;
    font-weight: 400;
  }

  h6 {
    font-size: 1rem;
  }

  ul {
    font-size: 1rem;
    font-weight: 500;
  }

  p {
    font-size: 1.2rem;
  }

  /* fuentes globales end */

  .container section {
    margin-bottom: 0;
  }

  .cotizacion {
    margin-bottom: 15% !important;
  }

  .cotizacion__title {
    text-align: center;
  }

  .proceso {
    background: none;
    margin-bottom: 0 !important;
    display: none;
    height: 0;
  }

  .proceso__div {
    flex-direction: column;
    width: 29%;
    margin: 2% 0;
  }

  .proceso__content {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 6%;
  }

  .proceso__text {
    text-align: center;
    height: 35px;
  }

  .proceso__text2 {
    text-align: center;
    height: 35px;
  }

  .proceso__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 9px;
    align-items: center;
  }

  .proceso__icon--div {
    padding-top: 11px;
  }

  .proceso__icon img {
    width: 20px;
  }

  .proceso__num {
    padding-right: 5px;
    top: -15px;
  }

  .proceso__num p {
  }

  .planMargin-0 {
    margin-bottom: 0 !important;
  }

  .formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .formulario__ciudad-marca {
    width: 100%;
  }

  .formulario__maps {
    display: none;
  }

  .buttonFormContent {
    display: flex;
    flex-direction: column;
    width: 80%;
  }

  .buttonFormContent button {
    width: 100%;
    font-size: 1.2rem;
  }

  .formulario__form select {
    font-size: 1.2rem;
  }

  .formulario__form input {
    font-size: 1.2rem;
  }

  .payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5%;
  }
  .payments div {
    width: 10%;
  }

  .payments img {
    width: 100%;
  }

  .compraSegura {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 5%;
  }

  .compraSegura div {
    width: 15%;
  }

  .compraSegura img {
    width: 100%;
  }

  /* 2 --------------- */

  .servicio__content {
    flex-direction: column;
  }

  .servicio__cart,
  .servicio__cart--2,
  .servicio__cart--3,
  .servicio__cart--4 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    padding: 0;
    height: 100%;
  }

  .servicio__text {
    width: 100%;
    text-align: center;
  }

  .servicio__img {
    width: 100%;
  }

  .servicio img {
    width: 70%;
  }

  /* 3 --------------- */

  /* planes container ------------------------ */
  .planesContainer {
    width: 200%;
    padding: 0 5%;
  }

  .planesCont ul {
    text-align: left;
  }

  .planesCont h2 {
    text-align: center;
  }

  .planesCont span {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont2 ul {
    text-align: left;
  }

  .planesCont2 h2 {
    text-align: center;
  }

  .planesCont2 span {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont3 ul {
    text-align: left;
  }

  .planesCont3 h2 {
    text-align: center;
  }

  .planesCont3 span {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .pPrecio__2 {
    position: relative;
    color: var(--color-1);
    margin: 67% 0 0 0;
  }

  .pPrecio__3 {
    position: relative;
    color: var(--color-1);
    margin: 45% 0 0 0;
  }

  /* selected -------------- */

  /* planes container END ------------------------------ */

  /* 5----- */

  .resumenCarrito {
    flex-direction: column;
  }

  #botones {
  }

  .resumenCarrito__cart1 {
    width: 100%;
  }

  .resumenCarrito__cart1--datos {
    flex-wrap: wrap;
  }

  .resumenCarrito__cart1--personal {
    display: none;
  }

  .resumenCarrito__cart2 {
    border: none;
  }

  .resumenCarrito__cart2--total {
    border: none !important;
  }

  .cantidad {
    width: 25%;
  }

  .cantidad h2 {
    font-size: 2rem;
  }

  #botones__button {
    width: 15%;
  }

  #botones__img {
    width: 100%;
  }

  .resumenCarrito__cart2 {
    width: 100%;
  }

  .resumenCarrito__cart2--pagos-iconos div {
    width: 13%;
  }

  .descargarPdf {
    margin-bottom: 25px;
  }

  /* ------- */

  .padding-0-15 {
    padding: 0 5%;
  }

  .line {
    display: none;
  }

  .marginB-100 {
    margin-bottom: 15%;
  }

  .formulario-width-1 {
    width: 90% !important;
  }

  .plan-width {
    width: 85% !important;
  }

  #planButton {
    width: 100% !important;
    margin-bottom: 10%;
  }

  .footer-3 {
    position: fixed;
    bottom: 0;
  }

  .buttonFormContent-pagos-2 {
    margin-top: 10%;
  }

  .buttonFormContent-pagos-2 p {
    font-size: 1.2rem;
  }

  /* servicio carts ------------------------------------- */
  .copilotOption {
    height: 28%;
  }

  .copilotOption p {
    text-align: justify;
  }

  /* --------------------------------------------------*/
  .driverOption {
    height: 28%;
  }

  .driverOption p {
    text-align: justify;
  }
  /* -------------------------------------------------- */
  .servicioCartDiv,
  .servicioCartDiv2,
  .servicioCartDiv3,
  .servicioCartDiv4 {
    padding: 2% 0;
  }

  /* ---------------------------------------------------- */

  /* servicio carts END ------------------------------------- */

  .popupDiv1 {
    flex-direction: column;
    overflow-x: scroll;
  }

  .popupDiv1__text {
    width: 100%;
  }

  .popupDiv1__text h4 {
    font-size: 1.2rem;
  }

  .popupDiv1__text--paragraph {
    margin-bottom: 10%;
  }

  .popupDiv2 {
    padding: 5px;
    width: 100%;
  }

  .popupDiv2 p {
    font-size: 1.2rem;
  }

  .popupDiv2__contador input {
    width: 30% !important;
  }

  /* --------------------------- */

  /* -------------------------------------------------------------------------------------- */
  .popupDiv4 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10% 0;
  }

  .popupDiv4 img {
    width: 100%;
  }
  /* ------------------------------- */
  #botones input {
    width: 12vmin;
  }

  .popupDiv1__img {
    width: 100%;
    padding-left: 0%;
  }

  .sectionContinueBack {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .checkbox {
    margin-bottom: 10%;
  }

  .checkbox,
  .checkboxSensor p {
    font-size: 1rem;
  }

  /* ------------------------------------ */
  /* ------------------------------------------- */
  .checkbox__input input {
    width: 15px;
    height: 15px;
  }
  /* -------------------------------------------------------------------------- */
  /* ----------  planes width ----------------------- */
  .planesContainerWidth {
    width: 100%;
  }

  .planesContWidth {
    width: 100%;
  }

  .planesContWidth li {
    font-size: 1.2rem;
    width: 100%;
    text-align: justify;
    margin-left: -15%;
  }

  .planesContWidth h2 {
    text-align: left;
  }

  .planesContWidth h3 {
    font-size: 1.2rem;
    color: var(--color-6);
    font-weight: 400;
  }
  /* ----------  planes width ----------------------- */
  .parabrisasTOption__img {
    width: 30%;
  }

  .popupMapsContainer {
    padding: 5% 2.5% 85% 2.5%;
  }

  /* ------------------------------- */
  .modal-content {
    width: 80%;
  }

  .modal-content h2 {
    width: 80%;
  }

  .modalTextContainer {
    display: flex;
    flex-direction: column;
  }
  /* ------------------------------- */

  .collapseContent-img,
  .collapseContent-img-2,
  .collapseContent-img-3 {
    width: 10%;
    margin-left: 80%;
  }
}

@media (min-width: 280px) {
  .header__div1 img {
    width: 100%;
  }

  .servicio {
    width: 90% !important;
  }

  .repararCont__parabrisas span {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .repararCont__parabrisas2 span {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .popup {
    width: 90%;
    height: 80%;
  }

  .popupDiv2-content {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .formulario-2 {
    flex-direction: column;
  }

  .formulario-2__ciudad-marca {
    width: 100%;
  }

  .formulario-2__datosCalendario {
    width: 60%;    
  }


 .resumenCarrito__cart1 h3 {
    font-size: 1.8rem;
  }

  .resumenCarrito__cart1 h6 {
    font-size: 1.2rem;
  }

  .resumenCarrito__cart2 h3 {
    font-size: 1.8rem;
  }

  .resumenCarrito__cart2 h6 {
    font-size: 1.2rem;
  }

  .popupMaps {
    width: 90%;
    height: 80%;
  }

  .popupMaps iframe {
    width: 100%;
    height: 100%;
  }
}

/* 320px------------------------------------------------------------- */

@media (min-width: 320px) and (max-width: 359px) {
  /* fuentes globales */
  h1 {
    font-weight: 700;
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
    font-weight: 700;
  }

  h3 {
    font-size: 1.1rem;
    font-weight: 600;
  }

  h4 {
    font-size: 0.8rem;
    font-weight: 600;
  }

  h5 {
    font-size: 0.8rem;
    font-weight: 400;
  }

  h6 {
    font-size: 1rem;
  }

  ul {
    font-size: 1rem;
    font-weight: 500;
  }

  p {
    font-size: 1.2rem;
  }

  /* fuentes globales end */

  .container section {
    margin-bottom: 0;
  }

  .cotizacion {
    margin-bottom: 15% !important;
  }

  .cotizacion__title {
    text-align: center;
  }

  .proceso {
    background: none;
    margin-bottom: 0 !important;
    display: none;
    height: 0;
  }

  .proceso__div {
    flex-direction: column;
    width: 29%;
    margin: 2% 0;
  }

  .proceso__content {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 6%;
  }

  .proceso__text {
    text-align: center;
    height: 35px;
  }

  .proceso__text2 {
    text-align: center;
    height: 35px;
  }

  .proceso__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 9px;
    align-items: center;
  }

  .proceso__icon--div {
    padding-top: 11px;
  }

  .proceso__icon img {
    width: 20px;
  }

  .proceso__num {
    padding-right: 5px;
    top: -15px;
  }

  .proceso__num p {
  }

  .planMargin-0 {
    margin-bottom: 0 !important;
  }

  .formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .formulario__ciudad-marca {
    width: 100%;
  }

  .formulario__maps {
    display: none;
  }

  .buttonFormContent {
    display: flex;
    flex-direction: column;
    width: 80%;
  }

  .buttonFormContent button {
    width: 100%;
    font-size: 1.2rem;
  }

  .formulario__form select {
    font-size: 1.2rem;
  }

  .formulario__form input {
    font-size: 1.2rem;
  }

  .payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5%;
  }
  .payments div {
    width: 10%;
  }

  .payments img {
    width: 100%;
  }

  .compraSegura {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 5%;
  }

  .compraSegura div {
    width: 15%;
  }

  .compraSegura img {
    width: 100%;
  }

  /* 2 --------------- */

  .servicio__content {
    flex-direction: column;
  }

  .servicio__cart,
  .servicio__cart--2,
  .servicio__cart--3,
  .servicio__cart--4 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    padding: 0;
    height: 100%;
  }

  .servicio__text {
    width: 100%;
    text-align: center;
  }

  .servicio__img {
    width: 100%;
  }

  .servicio img {
    width: 70%;
  }

  /* 3 --------------- */

  /* planes container ------------------------ */
  .planesContainer {
    width: 200%;
    padding: 0 5%;
  }

  .planesCont ul {
    text-align: left;
  }

  .planesCont h2 {
    text-align: center;
  }

  .planesCont span {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont2 ul {
    text-align: left;
  }

  .planesCont2 h2 {
    text-align: center;
  }

  .planesCont2 span {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont3 ul {
    text-align: left;
  }

  .planesCont3 h2 {
    text-align: center;
  }

  .planesCont3 span {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .pPrecio__2 {
    position: relative;
    color: var(--color-1);
    margin: 29% 0 0 0;
  }

  .pPrecio__3 {
    position: relative;
    color: var(--color-1);
    margin: 10% 0 0 0;
  }
  /* selected -------------- */

  /* planes container END ------------------------------ */

  /* 5----- */

  .resumenCarrito {
    flex-direction: column;
  }

  #botones {
  }

  .resumenCarrito__cart1 {
    width: 100%;
  }

  .resumenCarrito__cart1--datos {
    flex-wrap: wrap;
  }

  .resumenCarrito__cart1--personal {
    display: none;
  }

  .resumenCarrito__cart2 {
    border: none;
  }

  .resumenCarrito__cart2--total {
    border: none !important;
  }

  .cantidad {
    width: 25%;
  }

  .cantidad h2 {
    font-size: 2rem;
  }

  #botones__button {
    width: 15%;
  }

  #botones__img {
    width: 100%;
  }

  .resumenCarrito__cart2 {
    width: 100%;
  }

  .resumenCarrito__cart2--pagos-iconos div {
    width: 13%;
  }

  .descargarPdf {
    margin-bottom: 25px;
  }

  /* ------- */

  .padding-0-15 {
    padding: 0 5%;
  }

  .line {
    display: none;
  }

  .marginB-100 {
    margin-bottom: 15%;
  }

  .formulario-width-1 {
    width: 90% !important;
  }

  .plan-width {
    width: 85% !important;
  }

  #planButton {
    width: 100% !important;
    margin-bottom: 10%;
  }

  .footer-3 {
    position: fixed;
    bottom: 0;
  }

  .buttonFormContent-pagos-2 {
    margin-top: 10%;
  }

  /* servicio carts ------------------------------------- */
  .copilotOption {
    height: 28%;
  }

  .copilotOption p {
    text-align: justify;
  }

  /* --------------------------------------------------*/
  .driverOption {
    height: 28%;
  }

  .driverOption p {
    text-align: justify;
  }
  /* -------------------------------------------------- */

  /* ---------------------------------------------------- */

  .parabrisasTOption__img {
    width: 30%;
  }

  /* ---------------------------------------------------- */

  .servicioCartDiv,
  .servicioCartDiv2,
  .servicioCartDiv3,
  .servicioCartDiv4 {
    padding: 2% 0;
  }
  /* servicio carts END ------------------------------------- */
  .repararCont__parabrisas span {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .repararCont__parabrisas2 span {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .repararCont__parabrisas span {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .repararCont__parabrisas2 span {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .popupDiv1 {
    flex-direction: column;
    overflow-x: scroll;
  }

  .popupDiv1__text {
    width: 100%;
  }

  .popupDiv1__text h4 {
    font-size: 1.4rem;
  }

  .popupDiv1__text--paragraph {
    margin-bottom: 10%;
  }

  .popupDiv2 {
    padding: 5px;
    width: 75%;
  }

  .popupDiv2 p {
    font-size: 1.2rem;
  }

  .popupDiv2__contador input {
    width: 30% !important;
  }

  .popupDiv2-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* -------------------------------------------------------------------------------------- */
  .popupDiv4 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10% 0;
  }

  .popupDiv4 img {
    width: 100%;
  }
  /* ------------------------------- */

  .resumenCarrito__cart1 h3 {
    font-size: 2.2rem;
  }
  .resumenCarrito__cart1 h6 {
    font-size: 1.4rem;
  }

  .resumenCarrito__cart2 h3 {
    font-size: 2.2rem;
  }

  .resumenCarrito__cart2 h6 {
    font-size: 1.4rem;
  }

  #botones input {
    width: 12vmin;
  }

  .popupDiv1__img {
    width: 100%;
    padding-left: 0%;
  }

  /* ------------------------------- */
  .sectionContinueBack {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .checkbox {
    margin-bottom: 10%;
  }

  .checkbox,
  .checkboxSensor p {
    font-size: 1rem;
  }
  /* ------------------------------------------- */
  .checkbox__input input {
    width: 15px;
    height: 15px;
  }
  /* -------------------------------------------------------------------------- */

  /* ------------------------------------ */

  /* ----------  planes width ----------------------- */
  .planesContainerWidth {
    width: 100%;
  }

  .planesContWidth {
    width: 100%;
  }

  .planesContWidth li {
    font-size: 1.2rem;
    width: 100%;
    text-align: justify;
    margin-left: -15%;
  }

  .planesContWidth h2 {
    text-align: left;
  }

  .planesContWidth h3 {
    font-size: 1.2rem;
    color: var(--color-6);
    font-weight: 400;
  }
  /* ----------  planes width ----------------------- */
  .popupMapsContainer {
    padding: 5% 2.5% 75% 2.5%;
  }

  /* ------------------------------- */
  .modal-content {
    width: 80%;
  }

  .modal-content h2 {
    width: 80%;
  }

  .modalTextContainer {
    display: flex;
    flex-direction: column;
  }
  /* ------------------------------- */

  .collapseContent-img,
  .collapseContent-img-2,
  .collapseContent-img-3 {
    width: 10%;
    margin-left: 80%;
  }
}

/* 360px */

@media (min-width: 360px) and (max-width: 374px) {
  /* fuentes globales */
  h1 {
    font-weight: 700;
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
    font-weight: 700;
  }

  h3 {
    font-size: 1.4rem;
    font-weight: 600;
  }

  h4 {
    font-size: 0.8rem;
    font-weight: 600;
  }

  h5 {
    font-size: 0.8rem;
    font-weight: 400;
  }

  h6 {
    font-size: 1.3rem;
  }

  ul {
    font-size: 1.2rem;
    font-weight: 500;
  }

  p {
    font-size: 1.6rem;
  }

  /* fuentes globales end */

  .container section {
    margin-bottom: 0;
  }

  .cotizacion {
    margin-bottom: 15% !important;
  }

  .cotizacion__title {
    text-align: center;
  }

  .proceso {
    background: none;
    margin-bottom: 0 !important;
    display: none;
    height: 0;
  }

  .proceso__content {
    flex-wrap: wrap;
  }

  .proceso__div {
    width: 15%;
    flex-direction: column;
  }

  .proceso__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .proceso__icon--div {
    padding-top: 11px;
  }

  .proceso__icon img {
    width: 20px;
  }

  .proceso__num {
    top: -15px;
    padding-right: 5px;
  }

  .proceso__num p {
  }

  .proceso__text {
    width: 100%;
    text-align: center;
    height: 19px;
  }

  .proceso__text2 {
    width: 100%;
    text-align: center;
    height: 19px;
  }

  .formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10%;
  }

  .formulario__ciudad-marca {
    width: 100%;
  }

  .formulario__maps {
    display: none;
  }

  .buttonFormContent {
    display: flex;
    flex-direction: column;
    width: 80%;
  }

  .buttonFormContent button {
    width: 100%;
    font-size: 1.6rem;
  }

  .formulario__form select,
  input {
    font-size: 1.6rem;
  }

  .formulario__form input {
    font-size: 1.6rem;
  }

  .payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5%;
  }
  .payments div {
    width: 15%;
  }

  .payments img {
    width: 100%;
  }

  .compraSegura {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 5%;
  }

  .compraSegura div {
    width: 15%;
  }

  .compraSegura img {
    width: 100%;
  }

  .padding-0-15 {
    padding: 0;
  }

  /* 2 --------------- */

  .servicio__content {
    flex-direction: column;
    padding: 0 5%;
  }

  .servicio__cart,
  .servicio__cart--2,
  .servicio__cart--3,
  .servicio__cart--4 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    padding: 0;
    height: 100%;
  }

  .servicio__text {
    width: 100%;
    text-align: center;
  }

  .servicio__img {
    width: 100%;
  }

  .servicio img {
    width: 70%;
  }

  /* 3 --------------- */
  .planesContainer {
    width: 200%;
    padding: 0 5%;
  }

  .planesCont ul {
    text-align: left;
  }

  .planesCont h2 {
    text-align: center;
  }

  .planesCont span {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont2 ul {
    text-align: left;
  }

  .planesCont2 h2 {
    text-align: center;
  }

  .planesCont2 span {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont3 ul {
    text-align: left;
  }

  .planesCont3 h2 {
    text-align: center;
  }

  .planesCont3 span {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  /* 5----- */

  .resumenCarrito {
    flex-direction: column;
  }

  #botones {
  }

  .resumenCarrito__cart1 {
    width: 100%;
  }

  .resumenCarrito__cart1--datos {
    flex-wrap: wrap;
  }

  .resumenCarrito__cart1--personal {
    display: none;
  }

  .resumenCarrito__cart2 {
    border: none;
  }

  .resumenCarrito__cart2--total {
    border: none !important;
  }

  .cantidad {
    width: 35%;
  }

  .cantidad h2 {
    font-size: 2.4rem;
  }

  #botones__button {
    width: 12%;
  }

  #botones__img {
    width: 100%;
  }

  .resumenCarrito__cart2 {
    width: 100%;
  }

  .resumenCarrito__cart2--pagos-iconos div {
    width: 13%;
  }

  .descargarPdf {
    margin-bottom: 25px;
  }

  /* ------- */

  .padding-0-15 {
    padding: 0 5%;
  }

  .line {
    display: none;
  }

  .marginB-100 {
    margin-bottom: 10%;
  }

  .formulario-width-1 {
    width: 100% !important;
  }

  .plan-width {
    width: 85% !important;
  }

  #planButton {
    width: 100% !important;
    margin-bottom: 10%;
  }

  .footer-3 {
    position: fixed;
    bottom: 0;
  }

  .buttonFormContent-pagos-2 {
    margin-top: 10%;
  }

  .buttonFormContent-pagos-2 p {
    font-size: 1.2rem;
  }

  /* servicio carts ------------------------------------- */
  .copilotOption {
    height: 28%;
  }

  .copilotOption p {
    text-align: justify;
  }

  /* --------------------------------------------------*/
  .driverOption {
    height: 28%;
  }

  .driverOption p {
    text-align: justify;
  }
  /* -------------------------------------------------- */
  .servicioCartDiv,
  .servicioCartDiv2,
  .servicioCartDiv3,
  .servicioCartDiv4 {
    padding: 2% 0;
  }
  /* servicio carts END ------------------------------------- */
  .repararCont__parabrisas p {
    font-size: 1.2rem;
  }

  .repararCont__parabrisas2 p {
    font-size: 1.2rem;
  }

  .repararCont__parabrisas span {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .repararCont__parabrisas2 span {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .popupDiv1 {
    flex-direction: column;
    overflow-x: scroll;
  }

  .popupDiv1__text {
    width: 100%;
  }

  .popupDiv1__text h4 {
    font-size: 1.6rem;
  }

  .popupDiv1__text--paragraph {
    margin-bottom: 10%;
  }

  .popupDiv2 {
    padding: 5px;
    width: 75%;
  }

  .popupDiv2 p {
    font-size: 1.2rem;
  }

  .popupDiv2__contador input {
    width: 30% !important;
  }

  /* -------------------------------------------------------------------------------------- */
  .popupDiv4 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10% 0;
  }

  .popupDiv4 img {
    width: 100%;
  }
  /* ------------------------------- */

  .popupDiv2-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .resumenCarrito__cart1 h3 {
    font-size: 2.2rem;
  }

  .resumenCarrito__cart1 h6 {
    font-size: 1.4rem;
  }

  .resumenCarrito__cart2 h3 {
    font-size: 2.2rem;
  }

  .resumenCarrito__cart2 h3 {
    font-size: 1.4rem;
  }

  #botones input {
    width: 12vmin;
  }

  .popupDiv1__img {
    width: 100%;
    padding-left: 0%;
  }

  /* ------------------------------- */
  .sectionContinueBack {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .checkbox {
    margin-bottom: 10%;
  }

  .checkbox,
  .checkboxSensor p {
    font-size: 1.2rem;
  }

  /* ------------------------------------------- */
  .checkbox__input input {
    width: 15px;
    height: 15px;
  }
  /* -------------------------------------------------------------------------- */
  /* ------------------------------------ */

  /* ----------  planes width ----------------------- */
  .planesContainerWidth {
    width: 100%;
  }

  .planesContWidth {
    width: 100%;
  }

  .planesContWidth li {
    font-size: 1.2rem;
    width: 100%;
    text-align: justify;
    margin-left: -10%;
  }

  .planesContWidth h2 {
    text-align: left;
  }

  .planesContWidth h3 {
    font-size: 1.2rem;
    color: var(--color-6);
    font-weight: 400;
  }

  .pPrecio__2 {
    position: relative;
    color: var(--color-1);
    margin: 25% 0 0 0;
  }

  .pPrecio__3 {
    position: relative;
    color: var(--color-1);
    margin: 16.5% 0 0 0;
  }
  /* ----------  planes width ----------------------- */
  .parabrisasTOption__img {
    width: 30%;
  }

  .popupMapsContainer {
    padding: 5% 2.5% 70% 2.5%;
  }

  /* ------------------------------- */
  .modal-content {
    width: 80%;
  }

  .modal-content h2 {
    width: 80%;
  }

  .modalTextContainer {
    display: flex;
    flex-direction: column;
  }
  /* ------------------------------- */
  .collapseContent-img,
  .collapseContent-img-2,
  .collapseContent-img-3 {
    width: 10%;
    margin-left: 80%;
  }
}

/* 375px */
@media (min-width: 375px) and (max-width: 389px) {
  /* fuentes globales */
  h1 {
    font-weight: 700;
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
    font-weight: 700;
  }

  h3 {
    font-size: 1.4rem;
    font-weight: 600;
  }

  h4 {
    font-size: 0.8rem;
    font-weight: 600;
  }

  h5 {
    font-size: 0.8rem;
    font-weight: 400;
  }

  h6 {
    font-size: 1.3rem;
  }

  ul {
    font-size: 1.2rem;
    font-weight: 500;
  }

  p {
    font-size: 1.6rem;
  }

  /* fuentes globales end */

  .container section {
    margin-bottom: 0;
  }

  .cotizacion {
    margin-bottom: 15% !important;
  }

  .cotizacion__title {
    text-align: center;
  }

  .proceso {
    background: none;
    margin-bottom: 0 !important;
    display: none;
    height: 0;
  }

  .proceso__content {
    flex-wrap: wrap;
  }

  .proceso__div {
    width: 15%;
    flex-direction: column;
  }

  .proceso__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .proceso__icon--div {
    padding-top: 11px;
  }

  .proceso__icon img {
    width: 20px;
  }

  .proceso__num {
    top: -15px;
    padding-right: 5px;
  }

  .proceso__num p {
  }

  .proceso__text {
    width: 100%;
    text-align: center;
    height: 19px;
  }

  .proceso__text2 {
    width: 100%;
    text-align: center;
    height: 19px;
  }

  .formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10%;
  }

  .formulario__ciudad-marca {
    width: 100%;
  }

  .formulario__maps {
    display: none;
  }

  .buttonFormContent {
    display: flex;
    flex-direction: column;
    width: 80%;
  }

  .buttonFormContent button {
    width: 100%;
    font-size: 1.6rem;
  }

  .formulario__form select,
  input {
    font-size: 1.6rem;
  }

  .formulario__form input {
    font-size: 1.6rem;
  }

  .payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5%;
  }
  .payments div {
    width: 15%;
  }

  .payments img {
    width: 100%;
  }

  .compraSegura {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 5%;
  }

  .compraSegura div {
    width: 15%;
  }

  .compraSegura img {
    width: 100%;
  }

  .padding-0-15 {
    padding: 0;
  }

  /* 2 --------------- */

  .servicio__content {
    flex-direction: column;
    padding: 0 5%;
  }

  .servicio__cart,
  .servicio__cart--2,
  .servicio__cart--3,
  .servicio__cart--4 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    padding: 0;
    height: 100%;
  }

  .servicio__text {
    width: 100%;
    text-align: center;
  }

  .servicio__img {
    width: 100%;
  }

  .servicio img {
    width: 70%;
  }

  /* 3 --------------- */
  .planesContainer {
    width: 200%;
    padding: 0 5%;
  }

  .planesCont ul {
    text-align: left;
  }

  .planesCont h2 {
    text-align: center;
  }

  .planesCont span {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont2 ul {
    text-align: left;
  }

  .planesCont2 h2 {
    text-align: center;
  }

  .planesCont2 span {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont3 ul {
    text-align: left;
  }

  .planesCont3 h2 {
    text-align: center;
  }

  .planesCont3 span {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  /* 5----- */

  .resumenCarrito {
    flex-direction: column;
  }

  #botones {
  }

  .resumenCarrito__cart1 {
    width: 100%;
  }

  .resumenCarrito__cart1--datos {
    flex-wrap: wrap;
  }

  .resumenCarrito__cart1--personal {
    display: none;
  }

  .resumenCarrito__cart2 {
    border: none;
  }

  .resumenCarrito__cart2--total {
    border: none !important;
  }

  .cantidad {
    width: 35%;
  }

  .cantidad h2 {
    font-size: 2.4rem;
  }

  #botones__button {
    width: 12%;
  }

  #botones__img {
    width: 100%;
  }

  .resumenCarrito__cart2 {
    width: 100%;
  }

  .resumenCarrito__cart2--pagos-iconos div {
    width: 13%;
  }

  .descargarPdf {
    margin-bottom: 25px;
  }

  /* ------- */

  .padding-0-15 {
    padding: 0 5%;
  }

  .line {
    display: none;
  }

  .marginB-100 {
    margin-bottom: 10%;
  }

  .formulario-width-1 {
    width: 100% !important;
  }

  .plan-width {
    width: 85% !important;
  }

  #planButton {
    width: 100% !important;
    margin-bottom: 10%;
  }

  .footer-3 {
    position: fixed;
    bottom: 0;
  }

  .buttonFormContent-pagos-2 {
    margin-top: 10%;
  }

  .buttonFormContent-pagos-2 p {
    font-size: 1.2rem;
  }

  /* servicio carts ------------------------------------- */
  .copilotOption {
    height: 28%;
  }

  .copilotOption p {
    text-align: justify;
  }

  /* --------------------------------------------------*/
  .driverOption {
    height: 28%;
  }

  .driverOption p {
    text-align: justify;
  }
  /* -------------------------------------------------- */
  .servicioCartDiv,
  .servicioCartDiv2,
  .servicioCartDiv3,
  .servicioCartDiv4 {
    padding: 2% 0;
  }
  /* servicio carts END ------------------------------------- */
  .repararCont__parabrisas p {
    font-size: 1.2rem;
  }

  .repararCont__parabrisas2 p {
    font-size: 1.2rem;
  }

  .repararCont__parabrisas span {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .repararCont__parabrisas2 span {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .popupDiv1 {
    flex-direction: column;
    overflow-x: scroll;
  }

  .popupDiv1__text {
    width: 100%;
  }

  .popupDiv1__text h4 {
    font-size: 1.6rem;
  }

  .popupDiv1__text--paragraph {
    margin-bottom: 10%;
  }

  .popupDiv2 {
    padding: 5px;
    width: 75%;
  }

  .popupDiv2 p {
    font-size: 1.4rem;
  }

  .popupDiv2__contador input {
    width: 25% !important;
  }

  .popupDiv2-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* -------------------------------------------------------------------------------------- */
  .popupDiv4 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10% 0;
  }

  .popupDiv4 img {
    width: 100%;
  }
  /* ------------------------------- */

  .resumenCarrito__cart1 h3 {
    font-size: 2.2rem;
  }

  .resumenCarrito__cart1 h6 {
    font-size: 1.4rem;
  }

  .resumenCarrito__cart2 h3 {
    font-size: 2.2rem;
  }

  .resumenCarrito__cart2 h6 {
    font-size: 1.4rem;
  }

  #botones input {
    width: 12vmin;
  }

  .popupDiv1__img {
    width: 100%;
    padding-left: 0%;
  }

  /* ------------------------------- */
  .sectionContinueBack {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .checkbox {
    margin-bottom: 10%;
  }

  .checkbox,
  .checkboxSensor p {
    font-size: 1.2rem;
  }

  /* ------------------------------------------- */
  .checkbox__input input {
    width: 15px;
    height: 15px;
  }
  /* -------------------------------------------------------------------------- */
  /* ------------------------------------ */

  /* ----------  planes width ----------------------- */
  .planesContainerWidth {
    width: 100%;
  }

  .planesContWidth {
    width: 100%;
  }

  .planesContWidth li {
    font-size: 1.2rem;
    width: 100%;
    text-align: justify;
    margin-left: -10%;
  }

  .planesContWidth h2 {
    text-align: left;
  }

  .planesContWidth h3 {
    font-size: 1.2rem;
    color: var(--color-6);
    font-weight: 400;
  }

  .pPrecio__2 {
    position: relative;
    color: var(--color-1);
    margin: 24% 0 0 0;
  }

  .pPrecio__3 {
    position: relative;
    color: var(--color-1);
    margin: 16% 0 0 0;
  }
  /* ----------  planes width ----------------------- */
  .parabrisasTOption__img {
    width: 30%;
  }

  .popupMapsContainer {
    padding: 5% 2.5% 70% 2.5%;
  }

  /* ------------------------------- */
  .modal-content {
    width: 80%;
  }

  .modal-content h2 {
    width: 80%;
  }

  .modalTextContainer {
    display: flex;
    flex-direction: column;
  }
  /* ------------------------------- */
}

/* 390px */
@media (min-width: 390px) and (max-width: 429px) {
  /* fuentes globales */
  h1 {
    font-weight: 700;
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
    font-weight: 700;
  }

  h3 {
    font-size: 1.4rem;
    font-weight: 600;
  }

  h4 {
    font-size: 0.8rem;
    font-weight: 600;
  }

  h5 {
    font-size: 0.8rem;
    font-weight: 400;
  }

  h6 {
    font-size: 1.3rem;
  }

  ul {
    font-size: 1.2rem;
    font-weight: 500;
  }

  p {
    font-size: 1.6rem;
  }

  /* fuentes globales end */

  .container section {
    margin-bottom: 0;
  }

  .cotizacion {
    margin-bottom: 15% !important;
  }

  .cotizacion__title {
    text-align: center;
  }

  .proceso {
    background: none;
    margin-bottom: 0 !important;
    display: none;
    height: 0;
  }

  .proceso__content {
    flex-wrap: wrap;
  }

  .proceso__div {
    width: 15%;
    flex-direction: column;
  }

  .proceso__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .proceso__icon--div {
    padding-top: 11px;
  }

  .proceso__icon img {
    width: 20px;
  }

  .proceso__num {
    top: -15px;
    padding-right: 5px;
  }

  .proceso__num p {
  }

  .proceso__text {
    width: 100%;
    text-align: center;
    height: 19px;
  }

  .proceso__text2 {
    width: 100%;
    text-align: center;
    height: 19px;
  }

  .formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10%;
  }

  .formulario__ciudad-marca {
    width: 100%;
  }

  .formulario__maps {
    display: none;
  }

  .buttonFormContent {
    display: flex;
    flex-direction: column;
    width: 80%;
  }

  .buttonFormContent button {
    width: 100%;
    font-size: 1.6rem;
  }

  .formulario__form select,
  input {
    font-size: 1.6rem;
  }

  .formulario__form input {
    font-size: 1.6rem;
  }

  .payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5%;
  }
  .payments div {
    width: 15%;
  }

  .payments img {
    width: 100%;
  }

  .compraSegura {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 5%;
  }

  .compraSegura div {
    width: 15%;
  }

  .compraSegura img {
    width: 100%;
  }

  .padding-0-15 {
    padding: 0;
  }

  /* 2 --------------- */

  .servicio__content {
    flex-direction: column;
    padding: 0 5%;
  }

  .servicio__cart,
  .servicio__cart--2,
  .servicio__cart--3,
  .servicio__cart--4 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    padding: 0;
    height: 100%;
  }

  .servicio__text {
    width: 100%;
    text-align: center;
  }

  .servicio__img {
    width: 100%;
  }

  .servicio img {
    width: 70%;
  }

  /* 3 --------------- */
  .planesContainer {
    width: 200%;
    padding: 0 5%;
  }

  .planesCont ul {
    text-align: left;
  }

  .planesCont h2 {
    text-align: center;
  }

  .planesCont span {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont2 ul {
    text-align: left;
  }

  .planesCont2 h2 {
    text-align: center;
  }

  .planesCont2 span {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont3 ul {
    text-align: left;
  }

  .planesCont3 h2 {
    text-align: center;
  }

  .planesCont3 span {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  /* 5----- */

  .resumenCarrito {
    flex-direction: column;
  }

  #botones {
  }

  .resumenCarrito__cart1 {
    width: 100%;
  }

  .resumenCarrito__cart1--datos {
    flex-wrap: wrap;
  }

  .resumenCarrito__cart1--personal {
    display: none;
  }

  .resumenCarrito__cart2 {
    border: none;
  }

  .resumenCarrito__cart2--total {
    border: none !important;
  }

  .cantidad {
    width: 35%;
  }

  .cantidad h2 {
    font-size: 2.4rem;
  }

  #botones__button {
    width: 12%;
  }

  #botones__img {
    width: 100%;
  }

  .resumenCarrito__cart2 {
    width: 100%;
  }

  .resumenCarrito__cart2--pagos-iconos div {
    width: 13%;
  }

  .descargarPdf {
    margin-bottom: 25px;
  }

  /* ------- */

  .padding-0-15 {
    padding: 0 5%;
  }

  .line {
    display: none;
  }

  .marginB-100 {
    margin-bottom: 10%;
  }

  .formulario-width-1 {
    width: 100% !important;
  }

  .plan-width {
    width: 85% !important;
  }

  #planButton {
    width: 100% !important;
    margin-bottom: 10%;
  }

  .footer-3 {
    position: fixed;
    bottom: 0;
  }

  .buttonFormContent-pagos-2 {
    margin-top: 10%;
  }

  .buttonFormContent-pagos-2 p {
    font-size: 1.4rem;
  }

  /* servicio carts ------------------------------------- */
  .copilotOption {
    height: 28%;
  }

  .copilotOption p {
    text-align: justify;
  }

  /* --------------------------------------------------*/
  .driverOption {
    height: 28%;
  }

  .driverOption p {
    text-align: justify;
  }
  /* -------------------------------------------------- */
  .servicioCartDiv,
  .servicioCartDiv2,
  .servicioCartDiv3,
  .servicioCartDiv4 {
    padding: 2% 0;
  }
  /* servicio carts END ------------------------------------- */
  .repararCont__parabrisas p {
    font-size: 1.2rem;
  }

  .repararCont__parabrisas2 p {
    font-size: 1.2rem;
  }

  .repararCont__parabrisas span {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .repararCont__parabrisas2 span {
    font-size: 1.2rem;
    font-weight: 700;
  }

  .popupDiv1 {
    flex-direction: column;
    overflow-x: scroll;
  }

  .popupDiv1__text {
    width: 100%;
  }

  .popupDiv1__text h4 {
    font-size: 1.7rem;
  }

  .popupDiv1__text--paragraph {
    margin-bottom: 10%;
  }

  .popupDiv2 {
    padding: 5px;
    width: 70%;
  }

  .popupDiv2 p {
    font-size: 1.4rem;
  }

  .popupDiv2__contador input {
    width: 20% !important;
  }

  .popupDiv2-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* -------------------------------------------------------------------------------------- */
  .popupDiv4 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10% 0;
  }

  .popupDiv4 img {
    width: 100%;
  }
  /* ------------------------------- */

  .resumenCarrito__cart1 h3 {
    font-size: 2.4rem;
  }

  .resumenCarrito__cart1 h6 {
    font-size: 1.8rem;
  }

  .resumenCarrito__cart2 h3 {
    font-size: 2.4rem;
  }

  .resumenCarrito__cart2 h6 {
    font-size: 1.8rem;
  }

  #botones input {
    width: 12vmin;
  }

  .popupDiv1__img {
    width: 100%;
    padding-left: 0%;
  }

  /* ------------------------------- */
  .sectionContinueBack {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .checkbox {
    margin-bottom: 10%;
  }

  .checkbox,
  .checkboxSensor p {
    font-size: 1.2rem;
  }

  /* ------------------------------------------- */
  .checkbox__input input {
    width: 15px;
    height: 15px;
  }
  /* -------------------------------------------------------------------------- */
  /* ------------------------------------ */

  /* ----------  planes width ----------------------- */
  .planesContainerWidth {
    width: 100%;
  }

  .planesContWidth {
    width: 100%;
  }

  .planesContWidth li {
    font-size: 1.2rem;
    width: 100%;
    text-align: justify;
    margin-left: -10%;
  }

  .planesContWidth h2 {
    text-align: left;
  }

  .planesContWidth h3 {
    font-size: 1.2rem;
    color: var(--color-6);
    font-weight: 400;
  }

  .pPrecio__2 {
    position: relative;
    color: var(--color-1);
    margin: 22.5% 0 0 0;
  }

  .pPrecio__3 {
    position: relative;
    color: var(--color-1);
    margin: 15% 0 0 0;
  }
  /* ----------  planes width ----------------------- */
  .parabrisasTOption__img {
    width: 30%;
  }

  .popupMapsContainer {
    padding: 5% 2.5% 70% 2.5%;
  }

  /* ------------------------------- */
  .modal-content {
    width: 80%;
  }

  .modal-content h2 {
    width: 80%;
  }

  .modalTextContainer {
    display: flex;
    flex-direction: column;
  }
  /* ------------------------------- */
}

/* 430px */
@media (min-width: 430px) and (max-width: 559px) {
  /* fuentes globales */
  h1 {
    font-weight: 700;
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.8rem;
    font-weight: 700;
  }

  h3 {
    font-size: 1.6rem;
    font-weight: 600;
  }

  h4 {
    font-size: 1.2rem;
    font-weight: 600;
  }

  h5 {
    font-size: 1.2rem;
    font-weight: 400;
  }

  h6 {
    font-size: 1.6rem;
  }

  ul {
    font-size: 1.2rem;
    font-weight: 500;
  }

  p {
    font-size: 1.8rem;
  }

  /* fuentes globales end */

  .container section {
    margin-bottom: 0;
  }

  .cotizacion__title {
    text-align: center;
  }

  .cotizacion {
    margin-bottom: 15% !important;
  }

  .proceso {
    background: none;
    margin-bottom: 0 !important;
    display: none;
    height: 0;
  }

  .proceso__content {
    flex-wrap: wrap;
  }

  .proceso__div {
    width: 15%;
    flex-direction: column;
  }

  .proceso__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .proceso__icon--div {
    padding-top: 11px;
  }

  .proceso__icon img {
    width: 20px;
  }

  .proceso__num {
    top: -15px;
    padding-right: 5px;
  }

  .proceso__num p {
  }

  .proceso__text {
    width: 100%;
    text-align: center;
    height: 19px;
  }

  .proceso__text2 {
    width: 100%;
    text-align: center;
    height: 19px;
  }

  .formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10%;
  }

  .formulario__ciudad-marca {
    width: 100%;
  }

  .formulario__maps {
    display: none;
  }

  .buttonFormContent {
    display: flex;
    flex-direction: column;
    width: 80%;
  }

  .buttonFormContent button {
    width: 100%;
    font-size: 1.8rem;
  }

  .formulario__form select {
    font-size: 1.8rem;
  }

  .formulario__form input {
    font-size: 1.8rem;
  }

  .payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5%;
  }
  .payments div {
    width: 15%;
  }

  .payments img {
    width: 100%;
  }

  .compraSegura {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 5%;
  }

  .compraSegura div {
    width: 15%;
  }

  .compraSegura img {
    width: 100%;
  }

  .padding-0-15 {
    padding: 0;
  }

  .pagosCont {
  }

  /* 2 --------------- */

  .servicio__content {
    flex-direction: column;
    padding: 0 5%;
  }

  .servicio__cart,
  .servicio__cart--2,
  .servicio__cart--3,
  .servicio__cart--4 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    padding: 0;
    height: 100%;
  }

  .servicio__text {
    width: 100%;
    text-align: center;
  }

  .servicio__img {
    width: 100%;
  }

  .servicio img {
    width: 50%;
  }

  /* 3 --------------- */
  .planesContainer {
    width: 200%;
    padding: 0 5%;
  }

  .planesCont ul {
    text-align: left;
  }

  .planesCont h2 {
    text-align: center;
  }

  .planesCont span {
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont2 ul {
    text-align: left;
  }

  .planesCont2 h2 {
    text-align: center;
  }

  .planesCont2 span {
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont3 ul {
    text-align: left;
  }

  .planesCont3 h2 {
    text-align: center;
  }

  .planesCont3 span {
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  /* 5----- */

  .resumenCarrito {
    flex-direction: column;
  }

  #botones {
  }

  .resumenCarrito__cart1 {
    width: 100%;
  }

  .resumenCarrito__cart1--datos {
    flex-wrap: wrap;
  }

  .resumenCarrito__cart1--personal {
    display: none;
  }

  .resumenCarrito__cart2 {
    border: none;
  }

  .resumenCarrito__cart2--total {
    border: none !important;
  }

  .cantidad {
    width: 45%;
  }

  .cantidad h2 {
    font-size: 2.4rem;
  }

  #botones__button {
    width: 12%;
  }

  #botones__img {
    width: 100%;
  }

  .resumenCarrito__cart2 {
    width: 100%;
  }

  .resumenCarrito__cart2--pagos-iconos div {
    width: 13%;
  }

  .descargarPdf {
    margin-bottom: 25px;
  }

  /* ------- */

  .padding-0-15 {
    padding: 0 5%;
  }

  .line {
    display: none;
  }

  .marginB-100 {
    margin-bottom: 10%;
  }
  .formulario-width-1 {
    width: 100% !important;
  }

  .plan-width {
    width: 85% !important;
  }

  #planButton {
    width: 100% !important;
    margin-bottom: 10%;
  }

  .footer-3 {
    position: fixed;
    bottom: 0;
  }

  .buttonFormContent-pagos-2 {
    margin-top: 10%;
  }

  .buttonFormContent-pagos-2 p {
    font-size: 1.4rem;
  }

  /* servicio carts ------------------------------------- */
  .copilotOption {
    height: 28%;
  }

  .copilotOption p {
    text-align: justify;
  }

  /* --------------------------------------------------*/
  .driverOption {
    height: 28%;
  }

  .driverOption p {
    text-align: justify;
  }
  /* -------------------------------------------------- */
  .servicioCartDiv,
  .servicioCartDiv2,
  .servicioCartDiv3,
  .servicioCartDiv4 {
    padding: 2% 0;
  }
  /* servicio carts END ------------------------------------- */
  .repararCont__parabrisas p {
    font-size: 1.2rem;
  }

  .repararCont__parabrisas2 p {
    font-size: 1.2rem;
  }

  .popupDiv1 {
    flex-direction: column;
    overflow-x: scroll;
  }

  .popupDiv1__text {
    width: 100%;
  }

  .popupDiv1__text h4 {
    font-size: 1.9rem;
  }

  .popupDiv1__text--paragraph {
    margin-bottom: 10%;
  }

  .popupDiv2 {
    padding: 5px;
    width: 65%;
  }

  .popupDiv2 p {
    font-size: 1.4rem;
  }

  .popupDiv2__contador input {
    width: 20% !important;
  }

  .popupDiv2-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* -------------------------------------------------------------------------------------- */
  .popupDiv4 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10% 0;
  }

  .popupDiv4 img {
    width: 100%;
  }
  /* ------------------------------- */

  .resumenCarrito__cart1 h3 {
    font-size: 2.4rem;
  }

  .resumenCarrito__cart1 h6 {
    font-size: 1.8rem;
  }

  .resumenCarrito__cart2 h3 {
    font-size: 2.4rem;
  }

  .resumenCarrito__cart2 h6 {
    font-size: 1.8rem;
  }

  #botones input {
    width: 12vmin;
  }

  .popupDiv1__img {
    width: 100%;
    padding-left: 0%;
  }

  /* ------------------------------- */
  .sectionContinueBack {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .checkbox {
    margin-bottom: 10%;
  }

  .checkbox,
  .checkboxSensor p {
    font-size: 1.2rem;
  }

  /* ------------------------------------------- */
  .checkbox__input input {
    width: 15px;
    height: 15px;
  }
  /* -------------------------------------------------------------------------- */
  /* ------------------------------------ */

  .pPrecio__2 {
    position: relative;
    color: var(--color-1);
    margin: 13% 0 0 0;
  }

  .pPrecio__3 {
    position: relative;
    color: var(--color-1);
    margin: 6% 0 0 0;
  }
  /* ----------  planes width ----------------------- */
  .planesContainerWidth {
    width: 100%;
  }

  .planesContWidth {
    width: 100%;
  }

  .planesContWidth li {
    font-size: 1.2rem;
    width: 100%;
    text-align: justify;
    margin-left: -10%;
  }

  .planesContWidth h2 {
    text-align: left;
  }

  .planesContWidth h3 {
    font-size: 1.2rem;
    color: var(--color-6);
    font-weight: 400;
  }
  /* ----------  planes width ----------------------- */
  .parabrisasTOption__img {
    width: 30%;
  }

  .popupMapsContainer {
    padding: 5% 2.5% 65% 2.5%;
  }

  /* ------------------------------- */
  .modal-content {
    width: 80%;
  }

  .modal-content h2 {
    width: 80%;
  }

  .modalTextContainer {
    display: flex;
    flex-direction: column;
  }
  /* ------------------------------- */
}

/*600px*/

@media (min-width: 600px) and (max-width: 719px) {
  /* fuentes globales */
  h1 {
    font-weight: 700;
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.8rem;
    font-weight: 700;
  }

  h3 {
    font-size: 1.6rem;
    font-weight: 600;
  }

  h4 {
    font-size: 1.2rem;
    font-weight: 600;
  }

  h5 {
    font-size: 1.2rem;
    font-weight: 400;
  }

  h6 {
    font-size: 1.6rem;
  }

  ul {
    font-size: 1.2rem;
    font-weight: 500;
  }

  p {
    font-size: 1.8rem;
  }

  /* fuentes globales end */

  .container section {
    margin-bottom: 0;
  }

  .cotizacion__title {
    text-align: center;
  }

  .cotizacion {
    margin-bottom: 15% !important;
  }

  .proceso {
    background: none;
    margin-bottom: 0 !important;
    display: none;
    height: 0;
  }

  .proceso__content {
    flex-wrap: wrap;
  }

  .proceso__div {
    width: 15%;
    flex-direction: column;
  }

  .proceso__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .proceso__icon--div {
    padding-top: 11px;
  }

  .proceso__icon img {
    width: 20px;
  }

  .proceso__num {
    top: -15px;
    padding-right: 5px;
  }

  .proceso__num p {
  }

  .proceso__text {
    width: 100%;
    text-align: center;
    height: 19px;
  }

  .proceso__text2 {
    width: 100%;
    text-align: center;
    height: 19px;
  }

  .formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10%;
  }

  .formulario__ciudad-marca {
    width: 100%;
  }

  .formulario__maps {
    display: none;
  }

  .buttonFormContent {
    display: flex;
    flex-direction: column;
    width: 80%;
  }

  .buttonFormContent button {
    width: 100%;
    font-size: 1.8rem;
  }

  .formulario__form select {
    font-size: 1.8rem;
  }

  .formulario__form input {
    font-size: 1.8rem;
  }

  .payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5%;
  }
  .payments div {
    width: 15%;
  }

  .payments img {
    width: 100%;
  }

  .compraSegura {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 5%;
  }

  .compraSegura div {
    width: 15%;
  }

  .compraSegura img {
    width: 100%;
  }

  .padding-0-15 {
    padding: 0;
  }

  .pagosCont {
  }

  /* 2 --------------- */

  .servicio__content {
    flex-direction: column;
    padding: 0 5%;
  }

  .servicio__cart,
  .servicio__cart--2,
  .servicio__cart--3,
  .servicio__cart--4 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    padding: 0 5%;
    height: 100%;
  }

  .servicio__text {
    width: 100%;
    text-align: center;
  }

  .servicio__img {
    width: 100%;
  }

  .servicio img {
    width: 50%;
  }

  /* 3 --------------- */
  .planesContainer {
    width: 200%;
    padding: 0 5%;
  }

  .planesCont ul {
    text-align: left;
  }

  .planesCont h2 {
    text-align: center;
  }

  .planesCont span {
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont2 ul {
    text-align: left;
  }

  .planesCont2 h2 {
    text-align: center;
  }

  .planesCont2 span {
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont3 ul {
    text-align: left;
  }

  .planesCont3 h2 {
    text-align: center;
  }

  .planesCont3 span {
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  /* 5----- */

  .resumenCarrito {
    flex-direction: column;
  }

  #botones {
  }

  .resumenCarrito__cart1 {
    width: 100%;
  }

  .resumenCarrito__cart1--datos {
    flex-wrap: wrap;
  }

  .resumenCarrito__cart1--personal {
    display: none;
  }

  .resumenCarrito__cart2 {
    border: none;
  }

  .resumenCarrito__cart2--total {
    border: none !important;
  }

  .cantidad {
    width: 45%;
  }

  .cantidad h2 {
    font-size: 2.4rem;
  }

  #botones__button {
    width: 12%;
  }

  #botones__img {
    width: 100%;
  }

  .resumenCarrito__cart2 {
    width: 100%;
  }

  .resumenCarrito__cart2--pagos-iconos div {
    width: 13%;
  }

  .descargarPdf {
    margin-bottom: 25px;
  }

  /* ------- */

  .padding-0-15 {
    padding: 0 5%;
  }

  .line {
    display: none;
  }

  .marginB-100 {
    margin-bottom: 10%;
  }
  .formulario-width-1 {
    width: 100% !important;
  }

  .plan-width {
    width: 85% !important;
  }

  #planButton {
    width: 100% !important;
    margin-bottom: 10%;
  }

  .footer-3 {
    position: fixed;
    bottom: 0;
  }

  .buttonFormContent-pagos-2 {
    margin-top: 10%;
  }

  .buttonFormContent-pagos-2 p {
    font-size: 1.4rem;
  }

  /* servicio carts ------------------------------------- */
  .copilotOption {
    height: 28%;
  }

  .copilotOption p {
    text-align: justify;
  }

  /* --------------------------------------------------*/
  .driverOption {
    height: 28%;
  }

  .driverOption p {
    text-align: justify;
  }
  /* -------------------------------------------------- */
  .servicioCartDiv,
  .servicioCartDiv2,
  .servicioCartDiv3,
  .servicioCartDiv4 {
    padding: 2% 0;
  }
  /* servicio carts END ------------------------------------- */
  .repararCont__parabrisas p {
    font-size: 1.2rem;
  }

  .repararCont__parabrisas2 p {
    font-size: 1.2rem;
  }

  .repararCont__parabrisas span {
    font-size: 1.4rem;
    font-weight: 700;
  }

  .repararCont__parabrisas2 span {
    font-size: 1.4rem;
    font-weight: 700;
  }

  .popupDiv1 {
    flex-direction: column;
    overflow-x: scroll;
  }

  .popupDiv1__text {
    width: 100%;
  }

  .popupDiv1__text h4 {
    font-size: 2.8rem;
  }

  .popupDiv1__text--paragraph {
    margin-bottom: 10%;
  }

  .popupDiv2 {
    padding: 5px;
    width: 50%;
  }

  .popupDiv2 p {
    font-size: 1.4rem;
  }

  .popupDiv2__contador input {
    width: 15% !important;
  }

  .popupDiv2-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* -------------------------------------------------------------------------------------- */
  .popupDiv4 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10% 0;
  }

  .popupDiv4 img {
    width: 100%;
  }
  /* ------------------------------- */

  .resumenCarrito__cart1 h3 {
    font-size: 2.4rem;
  }

  .resumenCarrito__cart1 h6 {
    font-size: 1.8rem;
  }

  .resumenCarrito__cart2 h3 {
    font-size: 2.4rem;
  }

  .resumenCarrito__cart2 h6 {
    font-size: 1.8rem;
  }

  #botones input {
    width: 10vmin;
  }

  .popupDiv1__img {
    width: 100%;
    padding-left: 0%;
  }

  /* ------------------------------- */
  .sectionContinueBack {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .checkbox {
    margin-bottom: 10%;
  }

  .checkbox,
  .checkboxSensor p {
    font-size: 1.2rem;
  }

  /* ------------------------------------ */

  .pPrecio__2 {
    position: relative;
    color: var(--color-1);
    margin: 9% 0 0 0;
  }

  .pPrecio__3 {
    position: relative;
    color: var(--color-1);
    margin: 4.5% 0 0 0;
  }
  /* ----------  planes width ----------------------- */
  .planesContainerWidth {
    width: 100%;
  }

  .planesContWidth {
    width: 100%;
  }

  .planesContWidth li {
    font-size: 1.2rem;
    width: 70%;
    text-align: justify;
    margin-left: -5%;
  }

  .planesContWidth h2 {
    text-align: left;
  }

  .planesContWidth h3 {
    font-size: 1.2rem;
    color: var(--color-6);
    font-weight: 400;
  }
  /* ----------  planes width ----------------------- */
  .parabrisasTOption__img {
    width: 30%;
  }

  .popupMapsContainer {
    padding: 5% 2.5% 50% 2.5%;
  }

  /* ------------------------------- */
  .modal-content {
    width: 80%;
  }

  .modal-content h2 {
    width: 80%;
  }

  .modalTextContainer {
    display: flex;
    flex-direction: column;
  }
  /* ------------------------------- */
}

@media (min-width: 600px) {
  .header__div1 img {
    width: 80%;
  }
}

/* 720px */
@media (min-width: 720px) and (max-width: 949px) {
  /* fuentes globales */
  h1 {
    font-weight: 700;
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2.6rem;
    font-weight: 700;
  }

  h3 {
    font-size: 2rem;
    font-weight: 600;
  }

  h4 {
    font-size: 1.8rem;
    font-weight: 600;
  }

  h5 {
    font-size: 1.8rem;
    font-weight: 400;
  }

  h6 {
    font-size: 2rem;
  }

  ul {
    font-size: 1.8rem;
    font-weight: 500;
  }

  p {
    font-size: 2.2rem;
  }

  /* fuentes globales end */

  .container section {
    margin-bottom: 70px;
  }

  .cotizacion {
    margin-bottom: 15% !important;
  }

  .cotizacion__title {
    text-align: center;
  }

  .proceso {
    background: none;
    margin-bottom: 0 !important;
    display: none;
    height: 0;
  }

  .proceso__content {
    flex-wrap: wrap;
  }

  .proceso__div {
    width: 15%;
    flex-direction: column;
  }

  .proceso__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .proceso__icon--div {
    padding-top: 11px;
  }

  .proceso__icon img {
    width: 20px;
  }

  .proceso__num {
    top: -15px;
    padding-right: 5px;
  }

  .proceso__num p {
  }

  .proceso__text {
    width: 100%;
    text-align: center;
    height: 19px;
  }

  .proceso__text2 {
    width: 100%;
    text-align: center;
    height: 19px;
  }

  .formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10%;
  }

  .formulario__ciudad-marca {
    width: 100%;
  }

  .formulario__maps {
    display: none;
  }

  .buttonFormContent {
    display: flex;
    flex-direction: column;
    width: 80%;
  }

  .buttonFormContent button {
    width: 100%;
    font-size: 2.2rem;
  }

  .formulario__form select {
    font-size: 2.2rem;
  }

  .formulario__form input {
    font-size: 2.2rem;
  }

  .payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5%;
  }
  .payments div {
    width: 15%;
  }

  .payments img {
    width: 100%;
  }

  .compraSegura {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 5%;
  }

  .compraSegura div {
    width: 15%;
  }

  .compraSegura img {
    width: 100%;
  }

  .padding-0-15 {
    padding: 0;
  }

  /* 2 --------------- */

  .servicio__content {
    flex-direction: column;
    padding: 0 5%;
  }

  .servicio__cart,
  .servicio__cart--2,
  .servicio__cart--3,
  .servicio__cart--4 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 100%;
    height: 80px;
    margin-bottom: 10px;
    padding: 0;
    height: 100%;
  }

  .servicio__text {
    width: 100%;
    text-align: center;
  }

  .servicio__img {
    width: 100%;
  }

  .servicio img {
    width: 50%;
  }

  /* 3 --------------- */
  .planesContainer {
    width: 200%;
    padding: 0 5%;
  }

  .planesCont ul {
    text-align: left;
  }

  .planesCont h2 {
    text-align: center;
  }

  .planesCont span {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont2 ul {
    text-align: left;
  }

  .planesCont2 h2 {
    text-align: center;
  }

  .planesCont2 span {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont3 ul {
    text-align: left;
  }

  .planesCont3 h2 {
    text-align: center;
  }

  .planesCont3 span {
    font-size: 2.6rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  /* footer */

  /* 5----- */

  .resumenCarrito {
    flex-direction: column;
  }

  #botones {
  }

  .resumenCarrito__cart1 {
    width: 100%;
  }

  .resumenCarrito__cart1--datos {
    flex-wrap: wrap;
  }

  .resumenCarrito__cart1--personal {
    display: none;
  }

  .resumenCarrito__cart2 {
    border: none;
  }

  .resumenCarrito__cart2--total {
    border: none !important;
  }

  .cantidad {
    width: 60%;
  }

  .cantidad h2 {
    font-size: 2.6rem;
  }

  #botones__button {
    width: 8%;
  }

  #botones__img {
    width: 100%;
  }

  .resumenCarrito__cart2 {
    width: 100%;
  }

  .resumenCarrito__cart2--pagos-iconos div {
    width: 13%;
  }

  .descargarPdf {
    margin-bottom: 25px;
  }

  /* ------- */

  .padding-0-15 {
    padding: 0 5%;
  }
  .line {
    display: none;
  }

  .marginB-100 {
    margin-bottom: 10%;
  }

  .formulario-width-1 {
    width: 100% !important;
  }

  .plan-width {
    width: 85% !important;
  }

  #planButton {
    width: 100% !important;
    margin-bottom: 10%;
  }

  .footer-3 {
    position: fixed;
    bottom: 0;
  }

  .buttonFormContent-pagos-2 {
    margin-top: 10%;
  }

  .buttonFormContent-pagos-2 p {
    font-size: 1.8rem;
  }

  /* servicio carts ------------------------------------- */
  .copilotOption {
    height: 28%;
  }

  .copilotOption p {
    text-align: justify;
  }

  /* --------------------------------------------------*/
  .driverOption {
    height: 28%;
  }

  .driverOption p {
    text-align: justify;
  }
  /* -------------------------------------------------- */
  .servicioCartDiv,
  .servicioCartDiv2,
  .servicioCartDiv3,
  .servicioCartDiv4 {
    padding: 2% 0;
  }
  /* servicio carts END ------------------------------------- */

  .servicio {
    width: 100% !important;
  }

  .repararCont__parabrisas p {
    font-size: 1.4rem;
  }

  .repararCont__parabrisas2 p {
    font-size: 1.4rem;
  }

  .repararCont__parabrisas span {
    font-size: 1.6rem;
    font-weight: 700;
  }

  .repararCont__parabrisas2 span {
    font-size: 1.6rem;
    font-weight: 700;
  }

  .popupDiv1 {
    flex-direction: column;
    overflow-x: scroll;
  }

  .popupDiv1__text {
    width: 100%;
  }

  .popupDiv1__text h4 {
    font-size: 3.4rem;
  }

  .popupDiv1__text--paragraph {
    margin-bottom: 10%;
  }

  .popupDiv2 {
    padding: 5px;
    width: 40%;
  }

  .popupDiv2 p {
    font-size: 1.4rem;
  }

  .popupDiv2__contador input {
    width: 15% !important;
  }

  .popupDiv2-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* -------------------------------------------------------------------------------------- */
  .popupDiv4 {
    width: 95%;
    display: flex;
    justify-content: center;
    margin: 10% 0;
  }

  .popupDiv4 img {
    width: 100%;
  }
  /* ------------------------------- */

  .resumenCarrito__cart1 h3 {
    font-size: 2.4rem;
  }

  .resumenCarrito__cart1 h6 {
    font-size: 1.8rem;
  }

  .resumenCarrito__cart2 h3 {
    font-size: 2.4rem;
  }

  .resumenCarrito__cart2 h6 {
    font-size: 1.8rem;
  }

  #botones input {
    width: 8vmin;
  }

  .popupDiv1__img {
    width: 100%;
    padding-left: 0%;
  }

  /* ------------------------------- */
  .sectionContinueBack {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .checkbox {
    margin-bottom: 10%;
  }

  .checkbox,
  .checkboxSensor p {
    font-size: 1.8rem;
  }

  /* ------------------------------------ */
  .pPrecio__2 {
    position: relative;
    color: var(--color-1);
    margin: 7.5% 0 0 0;
  }

  .pPrecio__3 {
    position: relative;
    color: var(--color-1);
    margin: 4% 0 0 0;
  }
  /* ----------  planes width ----------------------- */
  .planesContainerWidth {
    width: 100%;
  }

  .planesContWidth {
    width: 100%;
  }

  .planesContWidth li {
    font-size: 1.2rem;
    width: 70%;
    text-align: justify;
    margin-left: -5%;
  }

  .planesContWidth h2 {
    text-align: left;
  }

  .planesContWidth h3 {
    font-size: 1.2rem;
    color: var(--color-6);
    font-weight: 400;
  }
  /* ----------  planes width ----------------------- */
  .parabrisasTOption__img {
    width: 30%;
  }

  .popupMapsContainer {
    padding: 5% 2.5% 45% 2.5%;
  }

  /* ------------------------------- */
  .modal-content {
    width: 80%;
  }

  .modal-content h2 {
    width: 80%;
  }

  .modalTextContainer {
    display: flex;
    flex-direction: column;
  }
  /* ------------------------------- */
}

@media (min-width: 950px) and (max-width: 999px) {
  h1 {
    font-weight: 700;
    font-size: 2.4rem;
  }

  h2 {
    font-size: 2.6rem;
    font-weight: 700;
  }

  h3 {
    font-size: 2rem;
    font-weight: 600;
  }

  h4 {
    font-size: 1.8rem;
    font-weight: 600;
  }

  h5 {
    font-size: 1.8rem;
    font-weight: 400;
  }

  h6 {
    font-size: 2rem;
  }

  ul {
    font-size: 1.8rem;
    font-weight: 500;
  }

  p {
    font-size: 2.2rem;
  }

  /* fuentes globales end */

  .container section {
    margin-bottom: 70px;
  }

  .cotizacion {
    margin-bottom: 15% !important;
  }

  .cotizacion__title {
    text-align: center;
  }

  .proceso {
    background: none;
    margin-bottom: 0 !important;
    display: none;
    height: 0;
  }

  .proceso__content {
    flex-wrap: wrap;
  }

  .proceso__div {
    width: 15%;
    flex-direction: column;
  }

  .proceso__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .proceso__icon--div {
    padding-top: 11px;
  }

  .proceso__icon img {
    width: 20px;
  }

  .proceso__num {
    top: -15px;
    padding-right: 5px;
  }

  .proceso__num p {
  }

  .proceso__text {
    width: 100%;
    text-align: center;
    height: 19px;
  }

  .proceso__text2 {
    width: 100%;
    text-align: center;
    height: 19px;
  }

  .formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10%;
  }

  .formulario__ciudad-marca {
    width: 100%;
  }

  .formulario__maps {
    display: none;
  }

  .buttonFormContent {
    display: flex;
    flex-direction: column;
    width: 80%;
  }

  .buttonFormContent button {
    width: 100%;
    font-size: 2.2rem;
  }

  .formulario__form select {
    font-size: 2.2rem;
  }

  .formulario__form input {
    font-size: 2.2rem;
  }

  .payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5%;
  }
  .payments div {
    width: 15%;
  }

  .payments img {
    width: 100%;
  }

  .compraSegura {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 5%;
  }

  .compraSegura div {
    width: 15%;
  }

  .compraSegura img {
    width: 100%;
  }

  .padding-0-15 {
    padding: 0;
  }

  /* 2 --------------- */

  .servicio__content {
    flex-direction: column;
    padding: 0 5%;
  }

  .servicio__cart,
  .servicio__cart--2,
  .servicio__cart--3,
  .servicio__cart--4 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 100%;
    height: 80px;
    margin-bottom: 10px;
    padding: 0;
    height: 100%;
  }

  .servicio__text {
    width: 100%;
    text-align: center;
  }

  .servicio__img {
    width: 100%;
  }

  .servicio img {
    width: 40%;
  }

  /* 3 --------------- */
  .planesContainer {
    width: 200%;
    padding: 0 5%;
  }

  .planesCont ul {
    text-align: left;
  }

  .planesCont h2 {
    text-align: center;
  }

  .planesCont span {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont2 ul {
    text-align: left;
  }

  .planesCont2 h2 {
    text-align: center;
  }

  .planesCont2 span {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  .planesCont3 ul {
    text-align: left;
  }

  .planesCont3 h2 {
    text-align: center;
  }

  .planesCont3 span {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: flex-end;
  }

  /* footer */

  /* 5----- */

  .resumenCarrito {
    flex-direction: column;
  }

  #botones {
  }

  .resumenCarrito__cart1 {
    width: 100%;
  }

  .resumenCarrito__cart1--datos {
    flex-wrap: wrap;
  }

  .resumenCarrito__cart1--personal {
    display: none;
  }

  .resumenCarrito__cart2 {
    border: none;
  }

  .resumenCarrito__cart2--total {
    border: none !important;
  }

  .cantidad {
    width: 60%;
  }

  .cantidad h2 {
    font-size: 2.6rem;
  }

  #botones__button {
    width: 8%;
  }

  #botones__img {
    width: 100%;
  }

  .resumenCarrito__cart2 {
    width: 100%;
  }

  .resumenCarrito__cart2--pagos-iconos div {
    width: 13%;
  }

  .descargarPdf {
    margin-bottom: 25px;
  }

  /* ------- */

  .padding-0-15 {
    padding: 0 5%;
  }
  .line {
    display: none;
  }

  .marginB-100 {
    margin-bottom: 10%;
  }

  .formulario-width-1 {
    width: 100% !important;
  }

  .plan-width {
    width: 85% !important;
  }

  #planButton {
    width: 100% !important;
    margin-bottom: 10%;
  }

  .footer-3 {
    position: fixed;
    bottom: 0;
  }

  .buttonFormContent-pagos-2 {
    margin-top: 10%;
  }

  .buttonFormContent-pagos-2 p {
    font-size: 2rem;
  }

  /* servicio carts ------------------------------------- */
  .copilotOption {
    height: 28%;
  }

  .copilotOption p {
    text-align: justify;
  }

  /* --------------------------------------------------*/
  .driverOption {
    height: 28%;
  }

  .driverOption p {
    text-align: justify;
  }
  /* -------------------------------------------------- */
  .servicioCartDiv,
  .servicioCartDiv2,
  .servicioCartDiv3,
  .servicioCartDiv4 {
    padding: 2% 0;
  }
  /* servicio carts END ------------------------------------- */

  .servicio {
    width: 100% !important;
  }

  .repararCont__parabrisas p {
    font-size: 1.2rem;
  }

  .repararCont__parabrisas2 p {
    font-size: 1.2rem;
  }

  .repararCont__parabrisas span {
    font-size: 1.4rem;
    font-weight: 700;
  }

  .repararCont__parabrisas2 span {
    font-size: 1.4rem;
    font-weight: 700;
  }

  .popupDiv1 {
    flex-direction: column;
    overflow-x: scroll;
  }

  .popupDiv1__text {
    width: 100%;
  }
  .popupDiv1__text h4 {
    font-size: 3.4rem;
  }

  .popupDiv1__text--paragraph {
    margin-bottom: 10%;
  }

  .popupDiv2 {
    padding: 5px;
    width: 30%;
  }

  .popupDiv2 p {
    font-size: 1.4rem;
  }

  .popupDiv2__contador input {
    width: 15% !important;
  }

  .popupDiv2-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* -------------------------------------------------------------------------------------- */
  .popupDiv4 {
    width: 95%;
    display: flex;
    justify-content: center;
    margin: 10% 0;
  }

  .popupDiv4 img {
    width: 100%;
  }
  /* ------------------------------- */

  .resumenCarrito__cart1 h3 {
    font-size: 2.4rem;
  }

  .resumenCarrito__cart1 h6 {
    font-size: 1.8rem;
  }

  .resumenCarrito__cart2 h3 {
    font-size: 2.4rem;
  }

  .resumenCarrito__cart2 h6 {
    font-size: 1.8rem;
  }

  #botones input {
    width: 8vmin;
  }

  .popupDiv1__img {
    width: 100%;
    padding-left: 0%;
  }

  /* ------------------------------- */
  .sectionContinueBack {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .checkbox {
    margin-bottom: 10%;
  }

  .checkbox,
  .checkboxSensor p {
    font-size: 1.8rem;
  }

  /* ------------------------------------ */
  .pPrecio__2 {
    position: relative;
    color: var(--color-1);
    margin: 5.1% 0 0 0;
  }

  .pPrecio__3 {
    position: relative;
    color: var(--color-1);
    margin: 2.8% 0 0 0;
  }
  /* ----------  planes width ----------------------- */
  .planesContainerWidth {
    width: 100%;
  }

  .planesContWidth {
    width: 100%;
  }

  .planesContWidth li {
    font-size: 1.2rem;
    width: 70%;
    text-align: justify;
    margin-left: -5%;
  }

  .planesContWidth h2 {
    text-align: left;
  }

  .planesContWidth h3 {
    font-size: 1.2rem;
    color: var(--color-6);
    font-weight: 400;
  }
  /* ----------  planes width ----------------------- */
  .parabrisasTOption__img {
    width: 30%;
  }

  .popupMapsContainer {
    padding: 5% 2.5% 40% 2.5%;
  }

  /* ------------------------------- */
  .modal-content {
    width: 80%;
  }

  .modal-content h2 {
    width: 80%;
  }

  .modalTextContainer {
    display: flex;
    flex-direction: column;
  }
  /* ------------------------------- */
}

/* base: 1280x768px */
@media (min-width: 1000px) and (max-width: 1365px) {
  .header__div1 img {
    width: 60%;
  }

  .payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    gap: 5px;
    margin: 2.5% 0;
    width: 50%;
  }
  .payments div {
    width: 15%;
  }

  .payments img {
    width: 100%;
  }

  .compraSegura {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: left;
    align-items: center;
    gap: 5px;
    margin: 2.5% 0;
    width: 50%;
  }

  .compraSegura div {
    width: 15%;
  }

  .compraSegura img {
    width: 100%;
  }

  .pagosCont {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0 20%;
    background-color: var(--color-5);
  }

  .planesCont span {
    font-size: 2.4rem;
  }

  .planesCont2 span {
    font-size: 2.4rem;
  }

  .planesCont3 span {
    font-size: 2.4rem;
  }

  .popupDiv1__text--paragraph {
    margin-bottom: 15%;
  }

  .popupDiv2 p {
    font-size: 1.6rem;
  }

  /* -------------------------------------------------------------------------------------- */
  .popupDiv4 {
    width: 70%;
    display: flex;
    justify-content: center;
    margin: 10% 0;
  }

  .popupDiv4 img {
    width: 100%;
  }
  /* ------------------------------- */

  .formulario-2 {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }

  .servicio__cart,
  .servicio__cart--2,
  .servicio__cart--3,
  .servicio__cart--4 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 100%;
    height: 80px;
    margin-bottom: 10px;
    padding: 0;
    height: 100%;
  }

  .copilotOption__img {
    width: 30%;
  }

  .servicioCartDiv,
  .servicioCartDiv3 {
    padding-bottom: 0%;
  }

  .servicioCartDiv2,
  .servicioCartDiv4 {
    margin-bottom: 0%;
  }

  .buttonFormContent {
    padding: 0 5%;
  }

  /* ----------  planes width ----------------------- */
  .planesContainerWidth {
    width: 100%;
  }

  .planesContWidth {
    width: 100%;
    height: 450px;
  }

  .planesContWidth li {
    font-size: 1.8rem;
    width: 70%;
    text-align: justify;
    margin-left: 0%;
  }

  .planesContWidth h2 {
    text-align: left;
  }

  .planesContWidth h3 {
    font-size: 1.8rem;
    color: var(--color-6);
    font-weight: 400;
  }

  .pPrecio__2 {
    position: relative;
    color: var(--color-1);
    margin: 10% 0 0 0;
  }

  .pPrecio__3 {
    position: relative;
    color: var(--color-1);
    margin: 5% 0 0 0;
  }
  /* ----------  planes width ----------------------- */
  .parabrisasTOption__img {
    width: 30%;
  }

  .popup {
    width: 80%;
    height: 77%;
  }

  .popupMaps {
    width: 30%;
    height: 90%;
  }

  .popupMapsContainer {
    padding: 2% 2.5% 25% 2.5%;
  }
}

/* 1366 ---------------------------------------------------------------------------------------- */

@media (min-width: 1366px) {
  .header__div1 img {
    width: 50%;
  }

  .payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    gap: 5px;
    margin: 2.5% 0;
    width: 50%;
  }
  .payments div {
    width: 15%;
  }

  .payments img {
    width: 100%;
  }

  .compraSegura {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: left;
    align-items: center;
    gap: 5px;
    margin: 2.5% 0;
    width: 50%;
  }

  .compraSegura div {
    width: 15%;
  }

  .compraSegura img {
    width: 100%;
  }

  .pagosCont {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0 20%;
    background-color: var(--color-5);
  }

  .popupDiv1 h4 {
    font-size: 1.6rem;
  }

  .popupDiv1 p {
    line-height: 15px;
  }

  .popupDiv2 {
    font-size: 1.4rem;
  }
  /* -------------------------------------------------------------------------------------- */
  .popupDiv4 {
    width: 50%;
    display: flex;
    justify-content: center;
    margin: 10% 0;
  }

  .popupDiv4 img {
    width: 100%;
  }
  /* ------------------------------- */
  .copilotImg div {
    width: 10%;
  }

  .driverImg div {
    width: 10%;
  }

  #botones {
    height: 70%;
  }

  .planesCont span {
    font-size: 2.4rem;
  }

  .planesCont2 span {
    font-size: 2.4rem;
  }

  .planesCont3 span {
    font-size: 2.4rem;
  }

  .popupDiv1__text--paragraph {
    margin-bottom: 25%;
  }

  .popupDiv2 p {
    font-size: 1.6rem;
  }
  .formulario-2 {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }

  /* ---- Servicio Carts ----- */
  .servicio__cart,
  .servicio__cart--2,
  .servicio__cart--3,
  .servicio__cart--4 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 100%;
    height: 80px;
    margin-bottom: 10px;
    padding: 0;
    height: 100%;
  }

  .copilotOption__img {
    width: 30%;
  }

  .driverOption__img {
    width: 30%;
  }

  .servicioCartDiv,
  .servicioCartDiv3 {
    padding-bottom: 0%;
  }

  .servicioCartDiv2,
  .servicioCartDiv4 {
    margin-bottom: 0%;
  }
  /* ---- Servicio Carts ----- */

  .buttonFormContent {
    padding: 0 5%;
  }

  /* ----------  planes width ----------------------- */
  .planesContainerWidth {
    width: 100%;
  }

  .planesContWidth {
    width: 100%;
    height: 435px;
    padding: 3%;
  }

  .planesContWidth li {
    font-size: 1.8rem;
    width: 70%;
    text-align: justify;
    margin-left: 0%;
  }

  .planesContWidth h2 {
    text-align: left;
  }

  .planesContWidth h3 {
    font-size: 1.8rem;
    color: var(--color-6);
    font-weight: 400;
  }

  .pPrecio__2 {
    position: relative;
    color: var(--color-1);
    margin: 7.5% 0 0 0;
  }

  .pPrecio__3 {
    position: relative;
    color: var(--color-1);
    margin: 3.5% 0 0 0;
  }
  /* ----------  planes width ----------------------- */
  .parabrisasTOption__img {
    width: 30%;
  }

  .popup {
    width: 80%;
    height: 98%;
  }

  .popupMaps {
    width: 25%;
    height: 90%;
  }

  .popupMapsContainer {
    padding: 2% 2.5% 20% 2.5%;
  }
}

/* 1440px */
@media (min-width: 1440px) {
  .payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    gap: 5px;
    margin: 2.5% 0;
    width: 50%;
  }
  .payments div {
    width: 15%;
  }

  .payments img {
    width: 100%;
  }

  .compraSegura {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: left;
    align-items: center;
    gap: 5px;
    margin: 2.5% 0;
    width: 50%;
  }

  .compraSegura div {
    width: 15%;
  }

  .compraSegura img {
    width: 100%;
  }

  .pagosCont {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0 20%;
    background-color: var(--color-5);
  }

  .popupDiv1 h4 {
    font-size: 1.6rem;
  }

  .popupDiv1 p {
    line-height: 15px;
  }

  .popupDiv2 {
    font-size: 1.4rem;
  }

  /* -------------------------------------------------------------------------------------- */
  .popupDiv4 {
    width: 50%;
    display: flex;
    justify-content: center;
    margin: 10% 0;
  }

  .popupDiv4 img {
    width: 100%;
  }
  /* ------------------------------- */

  .copilotImg div {
    width: 10%;
  }

  .driverImg div {
    width: 10%;
  }

  #botones {
    height: 70%;
  }

  .planesCont span {
    font-size: 2.4rem;
  }

  .planesCont2 span {
    font-size: 2.4rem;
  }

  .planesCont3 span {
    font-size: 2.4rem;
  }

  .popupDiv1__text--paragraph {
    margin-bottom: 25%;
  }

  .formulario-2 {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }

  /* ---- Servicio Carts ----- */
  .servicio__cart,
  .servicio__cart--2,
  .servicio__cart--3,
  .servicio__cart--4 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 35%;
    height: 80px;
    margin-bottom: 10px;
    padding: 0;
    height: 100%;
  }

  .copilotOption__img {
    width: 30%;
  }

  .driverOption__img {
    width: 30%;
  }

  .servicioCartDiv,
  .servicioCartDiv3 {
    padding-bottom: 0%;
  }
  /* ---- Servicio Carts ----- */

  .buttonFormContent {
    padding: 0 5%;
  }

  .pPrecio__2 {
    position: relative;
    color: var(--color-1);
    margin: 7% 0 0 0;
  }

  .pPrecio__3 {
    position: relative;
    color: var(--color-1);
    margin: 3.5% 0 0 0;
  }
  /* ----------  planes width ----------------------- */
  .planesContainerWidth {
    width: 100%;
  }

  .planesContWidth {
    width: 100%;
    height: 438px;
    padding: 3%;
  }

  .planesContWidth li {
    font-size: 1.8rem;
    width: 70%;
    text-align: justify;
    margin-left: 0%;
  }

  .planesContWidth h2 {
    text-align: left;
  }

  .planesContWidth h3 {
    font-size: 1.8rem;
    color: var(--color-6);
    font-weight: 400;
  }
  /* ----------  planes width ----------------------- */
  .parabrisasTOption__img {
    width: 30%;
  }

  .popup {
    width: 75%;
    height: 68%;
  }

  .popupMaps {
    width: 25%;
    height: 90%;
  }

  .popupMapsContainer {
    padding: 2% 2.5% 20% 2.5%;
  }
}

/* 1600px */

@media (min-width: 1600px) {
  .planesCont span {
    font-size: 2.4rem;
  }

  .planesCont2 span {
    font-size: 2.4rem;
  }

  .planesCont3 span {
    font-size: 2.4rem;
  }

  .popupDiv1__text--paragraph {
    margin-bottom: 45%;
  }

  .formulario-2 {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }

  /* ---- Servicio Carts ----- */
  .servicio__cart,
  .servicio__cart--2,
  .servicio__cart--3,
  .servicio__cart--4 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 35%;
    height: 80px;
    margin-bottom: 10px;
    padding: 0;
    height: 100%;
  }

  .copilotOption__img {
    width: 30%;
  }

  .driverOption__img {
    width: 30%;
  }

  .servicioCartDiv,
  .servicioCartDiv3 {
    padding-bottom: 0%;
  }
  /* ---- Servicio Carts ----- */

  .pPrecio__2 {
    position: relative;
    color: var(--color-1);
    margin: 6% 0 0 0;
  }

  .pPrecio__3 {
    position: relative;
    color: var(--color-1);
    margin: 3% 0 0 0;
  }
  /* ----------  planes width ----------------------- */
  .planesContainerWidth {
    width: 100%;
  }

  .planesContWidth {
    width: 100%;
    height: 442px;
    padding: 3%;
  }

  .planesContWidth li {
    font-size: 1.8rem;
    width: 70%;
    text-align: justify;
    margin-left: 0%;
  }

  .planesContWidth h2 {
    text-align: left;
  }

  .planesContWidth h3 {
    font-size: 1.8rem;
    color: var(--color-6);
    font-weight: 400;
  }

  /* -------------------------------------------------------------------------------------- */
  .popupDiv4 {
    width: 50%;
    display: flex;
    justify-content: center;
    margin: 10% 0;
  }

  .popupDiv4 img {
    width: 100%;
  }
  /* ------------------------------- */
  /* ----------  planes width ----------------------- */
  .parabrisasTOption__img {
    width: 30%;
  }

  .popup {
    width: 75%;
    height: 90%;
  }

  .popupMaps {
    width: 25%;
    height: 90%;
  }

  .popupMapsContainer {
    padding: 2% 2.5% 18% 2.5%;
  }
}


/* 1920px------------------------------------------------------------ */

@media (min-width: 1920px) {
  .footer {
    height: 110px;
  }

  .header__div1 img {
    width: 60%;
  }

  .payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    gap: 5px;
    margin: 2.5% 0;
    width: 50%;
  }
  .payments div {
    width: 15%;
  }

  .payments img {
    width: 100%;
  }

  .compraSegura {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: left;
    align-items: center;
    gap: 5px;
    margin: 2.5% 0;
    width: 50%;
  }

  .compraSegura div {
    width: 15%;
  }

  .compraSegura img {
    width: 100%;
  }

  .pagosCont {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 0 20%;
    background-color: var(--color-5);
  }

  /*
  #collapseContent img {
    width: 70%;
  }
  */
  #collapseContent2 img {
    width: 70%;
  }

  #collapseContent3 img {
    width: 70%;
  }

  .planesCont span {
    font-size: 2.4rem;
  }

  .planesCont2 span {
    font-size: 2.4rem;
  }

  .planesCont3 span {
    font-size: 2.4rem;
  }
  .popupDiv1__text--paragraph {
    margin-bottom: 60%;
  }

  .formulario-2 {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }

  /* ---- Servicio Carts ----- */
  .servicio__cart,
  .servicio__cart--2,
  .servicio__cart--3,
  .servicio__cart--4 {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    width: 35%;
    height: 80px;
    margin-bottom: 10px;
    padding: 0;
    height: 100%;
  }

  .copilotOption__img {
    width: 30%;
  }

  .driverOption__img {
    width: 30%;
  }

  .servicioCartDiv,
  .servicioCartDiv3 {
    padding-bottom: 0%;
  }
  /* ---- Servicio Carts ----- */
  .servicio__img {
    width: 30%;
  }
  /* ----------  planes width ----------------------- */
  .planesContainerWidth {
    width: 100%;
  }

  .planesContWidth {
    width: 100%;
    height: 450px;
    padding: 3%;
  }

  .planesContWidth li {
    font-size: 1.8rem;
    width: 70%;
    text-align: justify;
    margin-left: 0%;
  }

  .planesContWidth h2 {
    text-align: left;
  }

  .planesContWidth h3 {
    font-size: 1.8rem;
    color: var(--color-6);
    font-weight: 400;
  }

  .pPrecio__2 {
    position: relative;
    color: var(--color-1);
    margin: 5% 0 0 0;
  }

  .pPrecio__3 {
    position: relative;
    color: var(--color-1);
    margin: 2.5% 0 0 0;
  }

  /* -------------------------------------------------------------------------------------- */
  .popupDiv4 {
    width: 50%;
    display: flex;
    justify-content: center;
    margin: 10% 0;
  }

  .popupDiv4 img {
    width: 100%;
  }
  /* ------------------------------- */
  /* ----------  planes width ----------------------- */
  .parabrisasTOption__img {
    width: 30%;
  }

  .popup {
    width: 65%;
    height: 82%;
  }

  .popupMaps {
    width: 25%;
    height: 90%;
  }

  .popupMapsContainer {
    padding: 2% 2.5% 18% 2.5%;
  }
}

/* height ------------------------------------------------------------------------------------------------*/

@media (min-height: 1650px) {
  .footer {
    position: fixed;
    bottom: 0;
  }
}

/* media queries ------------------------------------------------------------------------------------- */

/* testing ------------------------------------------------------------------------------------------ */




/* ========================================================================== */
/* ESTILOS PREMIUM AUTOGLASS (NUEVO DISEÑO BLINDADO)                          */
/* ========================================================================== */

/* ========================================== */
/* 1. RADIO BUTTON MODERNO (COMPARTIDO)       */
/* ========================================== */
.modern-radio {
    width: 28px !important;
    height: 28px !important;
    border: 2px solid #ccc !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    background-color: white !important;
    flex-shrink: 0 !important;
}
.modern-radio::after {
    content: '';
    width: 14px;
    height: 14px;
    background-color: #005296;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.2s ease;
}
/* Activación del Radio Button */
.plan-selected .modern-radio,
.tarjeta-instalacion.activa .modern-radio { border-color: #005296 !important; }

.plan-selected .modern-radio::after,
.tarjeta-instalacion.activa .modern-radio::after { transform: scale(1); }


/* ========================================== */
/* 2. MODALES (PASO 2 - SERVICIO)             */
/* ========================================== */
.modal-autoglass {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); z-index: 9999; justify-content: center; align-items: center;
}
.modal-content-wrapper {
    background: white; padding: 30px; border-radius: 12px;
    width: 90%; max-width: 650px; box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.modal-2-columnas { display: flex; gap: 20px; align-items: center; text-align: left; }
.modal-col-img { flex: 1; text-align: center; }
.modal-col-img img { max-width: 100%; height: auto; border-radius: 8px; border: 1px solid #eee; }
.modal-col-form { flex: 1; }
.modal-titulo { color: #005296; margin-bottom: 5px; font-size: 22px; margin-top: 0; }
.modal-subtitulo { font-size: 14px; color: #555; margin-bottom: 20px; }
.modal-label { margin-bottom: 10px; font-size: 16px; font-weight: bold; display: block; }

.btn-modal-opcion {
    display: block; width: 100%; padding: 12px; margin-bottom: 8px;
    border: 2px solid #005296; background: white; color: #005296;
    font-weight: bold; font-size: 15px; border-radius: 8px; cursor: pointer; transition: 0.2s;
    text-align: center;
}
.btn-modal-opcion.seleccionado { background: #005296 !important; color: white !important; }
.btn-guardar-modal {
    background: #005296; color: white; border: none; padding: 15px; width: 100%;
    font-size: 16px; font-weight: bold; border-radius: 8px; cursor: pointer; margin-top: 10px;
}
.btn-cancelar-modal {
    background: transparent; color: #666; border: none; padding: 10px; width: 100%;
    text-decoration: underline; cursor: pointer; margin-top: 5px; font-size: 14px;
}


/* ========================================== */
/* 3. TARJETAS DE PLANES (PASO 3 - PLANES)    */
/* ========================================== */
.contenedor-planes-nuevo {
    display: flex; justify-content: center; gap: 30px; flex-wrap: wrap;
    padding: 30px 20px; max-width: 1200px; margin: 0 auto 50px auto;
}
.tarjeta-plan-nueva {
    width: 100%; max-width: 340px; min-height: 440px; background: #ffffff;
    border: 2px solid #eaeaea; border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    display: flex; flex-direction: column; padding: 0; 
    overflow: hidden; cursor: pointer; box-sizing: border-box; text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tarjeta-plan-nueva:hover {
    border-color: #b0cfee; box-shadow: 0 12px 24px rgba(0, 82, 150, 0.12); transform: translateY(-5px);
}
.plan-selected {
    border-color: #005296 !important; background-color: #fbfcff !important;
    box-shadow: 0 15px 35px rgba(0, 82, 150, 0.25) !important;
}
.tarjeta-top {
    padding: 35px 30px; display: flex; flex-direction: column;
    align-items: flex-start; flex-grow: 1; box-sizing: border-box; width: 100%;
}
.tarjeta-top .modern-radio { margin-bottom: 25px; }
.tarjeta-title {
    font-size: 32px; color: #005296; font-weight: 800; margin: 0 0 25px 0; line-height: 1;
}
.tarjeta-features { list-style: none; padding: 0; margin: 0; width: 100%; }
.tarjeta-features li {
    font-size: 17px; color: #444; margin-bottom: 15px;
    display: flex; align-items: flex-start; font-weight: 600; line-height: 1.4;
}
.tarjeta-features li::before {
    content: ""; display: inline-block; width: 22px; height: 22px;
    margin-right: 14px; margin-top: 1px; background-color: #005296; border-radius: 50%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="10" viewBox="0 0 10 8" fill="none"><path d="M1 4.2L3.8 7L9 1.8" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: 12px; background-repeat: no-repeat; background-position: center; flex-shrink: 0;
}
.tarjeta-precio {
    background-color: #005296; color: #ffffff; font-size: 26px; font-weight: bold;
    text-align: center; padding: 22px 10px; width: 100%; margin-top: auto; box-sizing: border-box;
}

/* ========================================== */
/* 4. INSTALACIÓN BLINDADA (PASO 4)           */
/* ========================================== */

/* Contenedor Ultra-Seguro */
.wrapper-instalacion-seguro {
    width: 100%; max-width: 650px; margin: 0 auto 50px auto;
    padding: 0 15px; box-sizing: border-box; display: flex;
    flex-direction: column; align-items: center;
}
.titulo-centrado {
    font-size: 30px; color: #005296; font-weight: 800;
    text-align: center; margin-bottom: 35px; width: 100%;
}
.contenedor-tarjetas {
    width: 100%; display: flex; flex-direction: column; gap: 20px;
}

/* Tarjetas */
.tarjeta-instalacion {
    width: 100%; background: #ffffff; border: 2px solid #eaeaea;
    border-radius: 14px; box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: all 0.3s ease; overflow: hidden; box-sizing: border-box;
    text-align: left;
}
.tarjeta-instalacion:hover {
    border-color: #b0cfee; box-shadow: 0 8px 16px rgba(0, 82, 150, 0.1);
}
.tarjeta-instalacion.activa {
    border-color: #005296; box-shadow: 0 10px 25px rgba(0, 82, 150, 0.15);
    background-color: #fbfcff;
}

/* Cabecera y Radio Moderno */
.header-instalacion {
    width: 100%; background: transparent; border: none; padding: 20px 25px;
    display: flex; align-items: center; cursor: pointer; font-size: 20px;
    font-weight: 800; color: #005296; text-align: left; box-sizing: border-box;
}
.modern-radio {
    width: 26px; height: 26px; border: 2px solid #ccc; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-right: 15px; transition: all 0.3s ease; background-color: white; flex-shrink: 0;
}
.modern-radio::after {
    content: ''; width: 14px; height: 14px; background-color: #005296;
    border-radius: 50%; transform: scale(0); transition: transform 0.2s ease;
}
.tarjeta-instalacion.activa .modern-radio { border-color: #005296; }
.tarjeta-instalacion.activa .modern-radio::after { transform: scale(1); }

/* Contenido Interno */
.contenido-colapsable {
    padding: 0 25px 25px 65px; display: none; width: 100%; box-sizing: border-box;
}
.tarjeta-instalacion.activa .contenido-colapsable {
    display: block; animation: fadeIn 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

/* Selector de Sedes */
.sede-dropdown {
    width: 100%; padding: 12px; border: 2px solid #e0e0e0; border-radius: 8px;
    font-size: 15px; color: #333; outline: none; background-color: #fff;
    cursor: pointer; height: 52px; box-sizing: border-box; margin-bottom: 20px;
    transition: all 0.3s ease;
}
.sede-dropdown:focus { border-color: #005296; box-shadow: 0 0 0 3px rgba(0, 82, 150, 0.1); }

/* Inputs y Grids */
.reserva-grid { display: flex; gap: 15px; margin-bottom: 20px; width: 100%; box-sizing: border-box; }
.input-grupo { flex: 1; display: flex; flex-direction: column; width: 100%; }
.input-grupo label { font-size: 14px; font-weight: bold; color: #555; margin-bottom: 8px; }
.input-con-icono { position: relative; width: 100%; }
.input-con-icono img { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 18px; opacity: 0.5; }
.input-con-icono input {
    width: 100%; height: 52px !important; padding: 10px 10px 10px 45px;
    border: 2px solid #e0e0e0; border-radius: 8px; font-size: 15px;
    color: #333; outline: none; box-sizing: border-box; background-color: #fff;
}
.input-con-icono input:focus { border-color: #005296; box-shadow: 0 0 0 3px rgba(0, 82, 150, 0.1); }

/* Cajas y Botones Extras */
.info-resumen-caja {
    background: #ffffff; border: 1px solid #e0e0e0; border-left: 4px solid #005296;
    padding: 15px; border-radius: 8px; margin-top: 10px; width: 100%; box-sizing: border-box;
}
.info-resumen-caja p { margin: 4px 0; font-size: 14px; color: #444; }
.info-resumen-caja strong { color: #005296; }

.botones-sede { display: flex; gap: 10px; margin-top: 15px; width: 100%; }
.btn-sede {
    flex: 1; text-align: center; padding: 10px; border-radius: 6px;
    font-weight: bold; text-decoration: none; font-size: 13px; transition: all 0.2s ease;
}
.btn-ver { background-color: #eef5fb; color: #005296; border: 1px solid #cce0f5; }
.btn-ver:hover { background-color: #dcedfa; transform: translateY(-2px); }
.btn-llegar { background-color: #005296; color: white; border: 1px solid #005296; }
.btn-llegar:hover { background-color: #003f75; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,82,150,0.2); }

.etiqueta-precio {
    display: inline-block; background: #eef5fb; color: #005296; font-weight: 800;
    font-size: 15px; padding: 6px 12px; border-radius: 20px; margin-bottom: 15px;
}
.btn-reset {
    background: transparent; border: none; color: #888; text-decoration: underline;
    cursor: pointer; margin-top: 20px; font-size: 14px;
}

/* Móviles */
@media (max-width: 600px) {
    .reserva-grid { flex-direction: column; gap: 15px; }
    .contenido-colapsable { padding: 0 20px 20px 20px; }
    .header-instalacion { padding: 15px 20px; font-size: 18px; }
    .titulo-centrado { font-size: 24px; margin-bottom: 25px; }
}