@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");
.opacity {
  transition: all 0.8s;
}
.opacity.hidden {
  opacity: 0;
}
.opacity.show {
  opacity: 1;
}

.show {
  transition: all 0.5s;
  transition-delay: 0.5s;
}
.show.hidden {
  opacity: 0;
  translate: 0 15px;
}
.show.show {
  opacity: 1;
  translate: 0 0;
}

.linkIcon div,
.linkIcon a {
  background-color: #e4087e;
  padding: 10px 15px;
  border-radius: 8px;
  color: #10100e;
  width: fit-content;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.linkIcon div:hover,
.linkIcon a:hover {
  color: #fff;
  background-color: #10100e;
}
.linkIcon div span,
.linkIcon a span {
  font-weight: 600;
}

.linkIconClean {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
  color: #10100e;
  font-weight: 600;
}
.linkIconClean:hover {
  gap: 10px;
  color: #10100e;
}

.etiqueta {
  position: absolute;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  width: fit-content;
}

.caja, .formDenuncia, .mispolizas__item, .miCuenta .bloqueForm, .login__form--ingresar form, .contratar__cont--lateral, .contratar__cont--form {
  border-radius: 10px;
  background-color: #fff;
  padding: 20px 25px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 1px 3px 1px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}

a {
  transition: all 0.2s;
}
a:hover {
  color: #29a9d8;
}

.gradientAmarelo {
  background: #fcca03;
  background: linear-gradient(120deg, #fcca03 0%, #c39c00 100%);
}

.bordeRight {
  border-right: 1px solid #b5c3d1;
}

.bordeBottom, .contratar__cont--lateral ul li, .card__tablaHome ul li, .card__tabla ul li {
  border-bottom: 1px solid #b5c3d1;
}

.notUltimo:last-child, .seleccionarPago__bloque--item:last-child, .contratar__cont--lateral ul li:last-child, .contratar__cont--form--poliza ul li:last-child, .card__tablaHome ul li:last-child, .card__tabla ul li:last-child {
  border: none;
}

.notPrimero:first-child {
  border: none;
}

.bordeFull, .seccion-items__item, .contenido__componentes .componente .item.archivo, .contenido__componentes .componente .zona_1 {
  border: 1px solid #b5c3d1;
}

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

html {
  scroll-behavior: smooth;
}
html h1 {
  font-size: clamp(1.75rem, 2vw + 1rem, 3rem);
  line-height: 1.25;
  font-weight: 700;
}
html h2 {
  font-size: clamp(1.25rem, 1.75vw + 1rem, 2.5rem);
  line-height: 1.25;
  font-weight: 400;
}
html h3 {
  font-size: clamp(1rem, 1.25vw + 1rem, 1.75rem);
  line-height: 1.15;
  font-weight: 600;
}
html h4 {
  font-size: clamp(0.5rem, 0.75vw + 1rem, 1.25rem);
  line-height: 1.15;
  font-weight: 600;
}
html h5 {
  font-size: clamp(0.5rem, 0.75vw + 1rem, 1.5rem);
  line-height: 1.15;
  font-weight: 500;
}
html P {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
html P.texto-lg {
  font-size: 1.25rem;
  line-height: 1.5;
}
html a {
  font-size: 1rem;
  text-decoration: none;
  color: #4e9fcd;
  transition: all 0.2s;
}
html span {
  font-size: 1rem;
}
html i {
  font-size: 1.2rem;
}
html ul {
  list-style: none;
}
html ul li {
  list-style: none;
}
html i {
  color: currentColor;
}
html button {
  font-family: "Inter Tight", sans-serif;
  padding: 20px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
}

body {
  font-family: "Inter Tight", sans-serif;
}
body.bodyMensaje {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.bodyMensaje footer {
  margin-top: auto;
}

img {
  font-style: italic;
  max-width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle;
  shape-margin: 1rem;
}

input, textarea, select {
  height: 55px;
  border-radius: 8px;
  box-shadow: none;
  border: none;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding-inline: 15px;
  border: 1px solid #b0b8c8;
  background-color: #e6f0ff;
  color: #10100e;
}

textarea {
  height: 200px;
  padding-top: 15px;
}

input[type=text]:focus, input[type=search]:focus, input[type=password]:focus, textarea:focus, select:focus {
  outline: 0;
  border: 1px solid #e4087e;
  box-shadow: #4e9fcd 0 0 0 1px inset, rgba(78, 159, 205, 0.5) 0 0 0 4px;
  background-color: #f2f5fc;
}
input[type=text]::placeholder, input[type=search]::placeholder, input[type=password]::placeholder, textarea::placeholder, select::placeholder {
  color: #10100e;
  font-weight: 400;
  opacity: 0.75;
  font-size: 14px;
}

input[type=file] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 15px;
}

input[type=button],
input[type=submit] {
  background-color: #e4087e;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}
input[type=button]:hover,
input[type=submit]:hover {
  color: #fff;
  background-color: #10100e;
}

@keyframes parpadeo {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.cargando {
  animation: parpadeo 0.8s infinite;
  pointer-events: none;
  background-color: #ccc !important;
  cursor: wait;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.checkbox input[type=checkbox],
.checkbox input[type=radio] {
  display: none;
}
.checkbox input[type=checkbox]:checked + .custom-checkbox,
.checkbox input[type=radio]:checked + .custom-checkbox {
  background-color: #e4087e;
  border-color: #e4087e;
}
.checkbox input[type=checkbox]:checked + .custom-checkbox::after,
.checkbox input[type=radio]:checked + .custom-checkbox::after {
  content: "\f26e";
  color: white;
  font-size: 18px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
}
.checkbox .custom-checkbox {
  width: 24px;
  height: 24px;
  border: 1px solid #2b2b26;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}
.checkbox span {
  font-size: 16px;
  font-weight: 500;
}

.barra_navegacion {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1600px) {
  .barra_navegacion {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .barra_navegacion {
    padding-inline: 15px;
  }
}

body {
  color: #10100e;
  position: relative;
  min-height: 100vh;
  background-color: #ffffff;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  padding-block: 50px 15px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .hero {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .hero {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .hero {
    padding-block: 0px;
    padding-inline: 0px;
  }
}
.hero figure {
  border-radius: 30px;
  overflow: hidden;
  max-width: 700px;
  height: 80vh;
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .hero figure {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    height: 57vh;
    position: relative;
  }
  .hero figure::after {
    content: "";
    position: absolute;
    bottom: 150px;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
  }
}
.hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__seguros {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 75%;
}
@media screen and (max-width: 1600px) {
  .hero__seguros {
    left: 15px;
  }
}
@media screen and (max-width: 576px) {
  .hero__seguros {
    width: 100%;
    position: relative;
    transform: translateY(0);
    margin-top: -350px;
    left: 0;
  }
}
.hero__seguros h1 {
  color: #e4087e;
}
@media screen and (max-width: 576px) {
  .hero__seguros h1 {
    padding-inline: 15px;
    padding-bottom: 15px;
    color: #fff;
  }
}
@media screen and (max-width: 576px) {
  .hero__seguros h2 {
    padding-inline: 15px;
    padding-bottom: 15px;
    color: #fff;
  }
}
.hero__seguros--items {
  background-color: #ffffffe1;
  backdrop-filter: blur(5px);
  padding: 50px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  gap: 25px;
}
@media screen and (max-width: 576px) {
  .hero__seguros--items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    gap: 30px;
    padding: 20px;
  }
}
.hero__seguros--items--item {
  background-color: #fff;
  border-radius: 25px;
  padding: 30px;
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  box-shadow: 0px 0px 50px rgba(78, 159, 205, 0.5);
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}
.hero__seguros--items--item--tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #d1d134;
  color: #fff;
  padding: 5px 6px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
}
.hero__seguros--items--item--info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero__seguros--items--item--info h4 {
  margin-right: auto;
  font-size: 20px;
  font-weight: 700;
}
.hero__seguros--items--item--info span {
  font-size: 16px;
}
.hero__seguros--items--item--info a {
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translateX(-10px);
  gap: 0px;
  transition: all 0.2s;
}
.hero__seguros--items--item--info a span {
  font-weight: 600;
}
@media screen and (max-width: 576px) {
  .hero__seguros--items--item--info a {
    opacity: 1;
    transform: translate(0px);
    gap: 5px;
  }
}
.hero__seguros--items--item--price {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-end;
}
.hero__seguros--items--item--price i {
  font-size: 90px;
  color: #e4087e;
}
.hero__seguros--items--item--price img {
  width: 165px;
  position: absolute;
  bottom: -30px;
  right: -10px;
  transform: rotate(0);
  transition: all 0.3s;
  z-index: 10;
}
@media screen and (max-width: 576px) {
  .hero__seguros--items--item--price img {
    width: 110px;
    bottom: -20px;
    right: -20px;
  }
}
.hero__seguros--items--item--price .precio {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero__seguros--items--item--price .precio h3 {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero__seguros--items--item--price .precio h3 small {
  font-weight: 400;
  font-size: 13px;
}
.hero__seguros--items--item--price .precio a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #4e9fcd;
  transition: all 0.2s;
}
.hero__seguros--items--item--price .precio a:hover {
  gap: 10px;
}
.hero__seguros--items--item--price .precio a h4 {
  font-weight: 600;
  font-size: 18px;
  color: currentColor;
}
.hero__seguros--items--item--price .precio a i {
  font-size: 18px;
  color: currentColor;
}
.hero__seguros--items--item:hover {
  border-color: #4e9fcd;
  box-shadow: 0px 4px 30px rgba(78, 159, 205, 0.6);
}
.hero__seguros--items--item:hover a {
  opacity: 1;
  transform: translateX(0px);
  gap: 5px;
}
.hero__seguros--items--item:hover img {
  transform: rotate(-10deg) scale(1.075);
}
@media screen and (max-width: 576px) {
  .hero__seguros--items--item:hover img {
    transform: rotate(0deg) scale(1);
  }
}
.hero__seguros--items--btn {
  padding-top: 25px;
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__seguros--items--btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #4e9fcd;
  padding: 8px 10px;
  border-radius: 8px;
  width: fit-content;
}
.hero__seguros--items--btn a span {
  font-weight: 500;
  font-size: 14px;
}

.destacado {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 50px;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  .destacado {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .destacado {
    padding-inline: 15px;
  }
}
.destacado__cont {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 576px) {
  .destacado__cont {
    flex-direction: column;
  }
}
.destacado__tit {
  font-size: 60px;
  font-weight: 200;
}
.destacado figure {
  max-width: 600px;
  flex-shrink: 0;
}
@media screen and (max-width: 576px) {
  .destacado figure {
    max-width: 380px;
  }
}
.destacado__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.destacado__info h2 {
  font-weight: 800;
}

.productos {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 50px;
}
@media screen and (max-width: 1600px) {
  .productos {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .productos {
    padding-inline: 15px;
  }
}
.productos__contSlide {
  width: 100%;
}

.btnHomeCont {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .btnHomeCont {
    padding: 15px;
  }
}

.slide-a {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  margin-block: 20px;
}
@media screen and (max-width: 1600px) {
  .slide-a {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .slide-a {
    padding-inline: 15px;
  }
}
.slide-a__cont {
  width: 100%;
  overflow: hidden;
}
.slide-a__cont .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}
.slide-a__cont--escritorio {
  display: block;
}
@media screen and (max-width: 768px) {
  .slide-a__cont--escritorio {
    display: none;
  }
}
.slide-a__cont--tablet {
  display: none;
}
@media screen and (max-width: 768px) {
  .slide-a__cont--tablet {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .slide-a__cont--tablet {
    display: none;
  }
}
.slide-a__cont--celular {
  display: none;
}
@media screen and (max-width: 576px) {
  .slide-a__cont--celular {
    display: block;
  }
}

.zona-c {
  max-width: 1200px;
  margin: 0 auto;
  margin-block: 30px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .zona-c {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .zona-c {
    padding-inline: 15px;
  }
}
.zona-c__titulo h2 {
  font-size: 35px;
  color: #10100e;
  z-index: 2;
  text-align: center;
}
.zona-c__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.zona-c__items--1col {
  grid-column: 1/3;
}
.zona-c__items--2col {
  grid-column: auto;
}
@media screen and (max-width: 576px) {
  .zona-c__items--2col {
    grid-column: 1/3;
  }
}

.c-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-block-end: 15px;
  align-items: center;
}
.c-item figure a {
  transition: all 0.2s;
}
.c-item figure a img {
  transition: all 0.2s;
}
.c-item figure a:hover {
  opacity: 0.7;
}
.c-item figure a:hover img {
  scale: 1.1;
}
.c-item img {
  border-radius: 20px;
}
.c-item__imagen-centrada {
  grid-column: 1/3;
}
.c-item__info-centrada {
  grid-column: 1/3;
}
.c-item__imagen-alineada {
  grid-column: auto;
}
@media screen and (max-width: 576px) {
  .c-item__imagen-alineada {
    grid-column: 1/3;
  }
}
.c-item__info-alineada {
  grid-column: auto;
}
@media screen and (max-width: 576px) {
  .c-item__info-alineada {
    grid-column: 1/3;
  }
}
.c-item .img--derecha {
  order: 2;
}
@media screen and (max-width: 576px) {
  .c-item .img--derecha {
    order: 1;
  }
}
.c-item .info-derecha {
  order: 1;
}
@media screen and (max-width: 576px) {
  .c-item .info-derecha {
    order: 2;
  }
}

.item-zona-c {
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.item-zona-c h2 a,
.item-zona-c a a {
  font-size: clamp(1.25rem, 1.75vw + 1rem, 2.5rem);
  line-height: 1.25;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.1s;
  color: #e4087e;
}
.dark-mode .item-zona-c h2 a,
.dark-mode .item-zona-c a a {
  color: #fff;
}
.item-zona-c h2 a:hover,
.item-zona-c a a:hover {
  opacity: 0.7;
}
.item-zona-c p {
  font-size: 18px;
  padding-block: 5px;
}
.item-zona-c a {
  color: #4e9fcd;
  font-size: 16px;
}
.item-zona-c__precio {
  font-size: 40px;
  font-family: 800;
  color: #10100e;
}
.item-zona-c__precio--anterior {
  font-size: 20px;
  text-decoration: line-through;
  color: #2b2b26;
}
.item-zona-c__ampliar {
  transition: all 0.2s;
  margin-block: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
  background-color: #e4087e;
  border-radius: 15px;
  padding: 15px 30px;
  transition: all 0.3s;
  width: fit-content;
}
@media screen and (max-width: 576px) {
  .item-zona-c__ampliar {
    width: 100%;
  }
}
.item-zona-c__ampliar a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
  border: none;
}
.dark-mode .item-zona-c__ampliar a {
  color: #e4087e;
}
@media screen and (max-width: 768px) {
  .item-zona-c__ampliar a {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .item-zona-c__ampliar a {
    font-size: 20px;
  }
}
.item-zona-c__ampliar a i {
  vertical-align: middle;
  color: #fff;
  font-size: 25px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .item-zona-c__ampliar a i {
    font-size: 18px;
    padding: 10px;
  }
}
@media screen and (max-width: 576px) {
  .item-zona-c__ampliar a i {
    padding: 10px;
    font-size: 20px;
  }
}
.item-zona-c__ampliar:hover {
  opacity: 0.7;
}

.banner-a {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1600px) {
  .banner-a {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .banner-a {
    padding-inline: 15px;
  }
}
.banner-a figure {
  width: 100%;
  margin-block: 0px;
}
.banner-a figure img {
  width: 100%;
}

.producto {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 50px;
}
@media screen and (max-width: 1600px) {
  .producto {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .producto {
    padding-inline: 15px;
  }
}
.producto__cont {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .producto__cont {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .producto__cont {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .producto__cont {
    flex-direction: column;
  }
}
.producto__cont figure {
  max-width: 800px;
  flex-shrink: 0;
  margin-bottom: -50px;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .producto__cont figure {
    margin-bottom: 0;
  }
}
.producto__cont--info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.producto__cont--info h1 {
  color: #e4087e;
}
.producto__cont--info h2 {
  font-weight: 400;
  font-size: 30px;
}
@media screen and (max-width: 576px) {
  .producto__cont--info h2 {
    font-size: 24px;
  }
}
.producto__planes {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 80px;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .producto__planes {
    padding-inline: 0px;
  }
}
.producto__planes--alert {
  text-align: center;
}
.producto__planes--cont {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 1600px) {
  .producto__planes--cont {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .producto__planes--cont {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .producto__planes--cont {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.producto__encuesta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 480px;
  margin: 0 auto;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  .producto__encuesta {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .producto__encuesta {
    padding-inline: 15px;
  }
}
.producto__encuesta--form {
  margin-top: 15px;
  border: 1px solid #b5c3d1;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.producto__encuesta--form::before {
  content: "";
  position: absolute;
  left: -8px;
  bottom: 25px;
  background-color: #fff;
  border-left: 1px solid #b5c3d1;
  border-bottom: 1px solid #b5c3d1;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
}
.producto__encuesta--form h4 {
  color: #4e9fcd;
}
.producto__encuesta--form--opciones {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.producto__encuesta--form--opciones--opcion {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s;
  padding: 10px;
  border-radius: 6px;
  color: #2b2b26;
}
.producto__encuesta--form--opciones--opcion:hover {
  color: #28688d;
  background-color: #0000001c;
}
.producto__encuesta--form--opciones--opcion span {
  font-size: 24px;
  font-weight: 600;
}
.producto__encuesta--form--opciones--opcion i {
  font-size: 40px;
}
.producto__encuesta--comentario {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-top: 15px;
}
.producto__encuesta--comentario textarea {
  width: 100%;
  height: 200px;
  resize: none;
  padding-block: 15px;
  margin-block: 10px;
}
.producto__encuesta--comentario a {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: linear-gradient(to top, #e4087e, #fb8ac7);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  width: 100%;
  transition: all 0.2s;
}
.producto__encuesta--comentario a span {
  font-size: 18px;
  font-weight: 700;
}
.producto__encuesta--comentario a:hover {
  background-color: #e4087e;
  box-shadow: 0px 0px 20px rgba(228, 8, 126, 0.5);
  text-decoration: none;
}
@media screen and (max-width: 576px) {
  .producto__encuesta--comentario a {
    padding: 10px;
    border-radius: 6px;
  }
  .producto__encuesta--comentario a span {
    font-size: 16px;
  }
}

.card {
  background-color: #fff;
  color: #10100e;
  border-radius: 25px;
  border: 1px solid #b5c3d1;
  box-shadow: 0px 0px 50px rgba(78, 159, 205, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  transition: all 0.5s;
  overflow: hidden;
}
.card:hover {
  box-shadow: 0px 0px 60px rgba(78, 159, 205, 0.4);
  border-color: #4e9fcd;
}
.card__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 10px 25px;
  padding-top: 20px;
}
.card__header h3 {
  font-weight: 800;
  font-size: 36px;
  text-align: center;
  padding-top: 15px;
}
@media screen and (max-width: 576px) {
  .card__header h3 {
    font-size: 30px;
  }
}
.card__header h4 {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
}
.card__header h4 a {
  font-size: 24px !important;
  color: #10100e;
  text-align: center;
}
.card__header h5 {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .card__header h5 {
    text-align: center;
  }
}
.card__header--precio {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0px 25px;
}
@media screen and (max-width: 576px) {
  .card__header--precio {
    flex-direction: column;
    gap: 3px;
  }
}
.card__header--precio h4 {
  font-size: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
  align-items: flex-start;
}
@media screen and (max-width: 576px) {
  .card__header--precio h4 {
    font-size: 40px;
  }
}
.card__header--precio h4 small {
  font-size: 24px;
  font-weight: 400;
  padding-top: 10px;
}
@media screen and (max-width: 576px) {
  .card__header--precio h4 small {
    font-size: 18px;
  }
}
.card__header--btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 20px 20px;
}
@media screen and (max-width: 576px) {
  .card__header--btn {
    padding: 0;
  }
}
.card__header--btn a {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: linear-gradient(to top, #e4087e, #fb8ac7);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  width: 100%;
  transition: all 0.2s;
}
.card__header--btn a span {
  font-size: 18px;
  font-weight: 700;
}
.card__header--btn a:hover {
  background-color: #e4087e;
  box-shadow: 0px 0px 20px rgba(228, 8, 126, 0.5);
  text-decoration: none;
}
@media screen and (max-width: 576px) {
  .card__header--btn a {
    padding: 10px;
    border-radius: 6px;
  }
  .card__header--btn a span {
    font-size: 16px;
  }
}
.card__header--contacto {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-block: 5px 10px;
}
@media screen and (max-width: 576px) {
  .card__header--contacto {
    flex-direction: column;
    gap: 5px;
  }
}
.card__header--contacto a {
  border: 1px solid #10100e;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: #10100e;
  border-radius: 60px;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}
.card__header--contacto a:hover {
  background-color: #10100e;
  color: #fff;
}
.card__cupon {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 0px 20px;
}
.card__cupon h4 {
  font-size: 16px;
  font-weight: 500;
  color: #4e9fcd;
}
.card__cupon input {
  width: 100%;
}
.card figure {
  display: flex;
  align-items: center;
  gap: 10px;
  gap: 0;
  justify-content: center;
}
.card__tabla {
  padding: 20px 25px;
  padding-top: 10px;
}
.card__tabla ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.card__tabla ul li {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  padding-block: 15px;
}
.card__tabla ul li span {
  grid-column: 1/4;
  display: flex;
  align-items: center;
  gap: 5px;
}
.card__tabla ul li span a {
  color: #4e9fcd;
}
.card__tabla ul li span a:hover {
  color: #76b5d8;
}
.card__tabla ul li strong {
  grid-column: 4/6;
  margin-left: auto;
}
.card__tabla ul li .tabla-help {
  grid-column: 1/6;
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  background-color: #56b5ff;
  border: 1px solid #0087ef;
  font-size: 12px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: #fff;
}
.card__tablaHome {
  min-height: 150px;
  padding: 0px 20px;
}
.card__tablaHome ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.card__tablaHome ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  align-items: center;
  padding-block: 8px;
  position: relative !important;
}
.card__tablaHome ul li::before {
  content: "\f26e";
  font-size: 24px;
  color: #4e9fcd;
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
}
.card__tablaHome ul li i {
  font-size: 24px;
  color: #4e9fcd;
}

.cabezal {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  align-items: center;
  padding: 25px 15px;
  justify-content: space-between;
}
@media screen and (max-width: 1600px) {
  .cabezal {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .cabezal {
    padding-inline: 15px;
  }
}
.cabezal.vendedor {
  background-color: #e4087e;
  padding: 30px;
  border-radius: 15px;
  margin-top: 20px;
  margin: 15px auto;
}
.cabezal.vendedor .agente {
  color: #fff;
  padding-inline: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 576px) {
  .cabezal.vendedor {
    border-radius: 0;
  }
}
.cabezal__logo {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 576px) {
  .cabezal__logo {
    gap: 15px;
  }
}
.cabezal__logo img {
  height: 30px;
  transition: all 0.2s;
}
.cabezal__logo img:hover {
  opacity: 0.75;
}
@media screen and (max-width: 576px) {
  .cabezal__logo img {
    height: 25px;
  }
}
.cabezal__logo img.sancor {
  height: 30px;
}
@media screen and (max-width: 576px) {
  .cabezal__logo img.sancor {
    height: 25px;
  }
}
@media screen and (max-width: 576px) {
  .cabezal nav {
    display: none;
  }
}
.cabezal nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cabezal nav ul li {
  position: relative;
}
.cabezal nav ul li:hover > .submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.cabezal nav ul li a {
  font-weight: 500;
  color: #10100e;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cabezal nav ul li a i {
  font-size: 18px;
}
.cabezal nav ul li a span {
  font-size: 15px;
  font-weight: 500;
}
.cabezal nav ul li a:hover {
  color: #4e9fcd;
}
.cabezal nav ul .submenu {
  position: absolute;
  top: 150%;
  left: 0;
  z-index: 100;
  width: max-content;
  background-color: #e4087e;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 30px;
  align-items: flex-start;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.15);
}
.cabezal nav ul .submenu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
  align-items: flex-start;
  position: relative;
}
.cabezal nav ul .submenu ul::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 20px;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background-color: #e4087e;
  transform: rotate(-45deg);
}
.cabezal nav ul .submenu ul li a {
  color: #fff;
  padding: 0 !important;
  background: none !important;
  font-weight: 500 !important;
  font-size: 14px;
  transition: all 0.2s;
}
.cabezal nav ul .submenu ul li a:hover {
  opacity: 0.75;
}
.cabezal i {
  font-size: 70px;
}
.cabezal__tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .cabezal__tools {
    display: none;
  }
  .cabezal__tools.vendedor {
    display: block;
  }
}
.cabezal__tools a {
  color: #10100e;
  background-color: #fff;
  border: 1px solid rgba(16, 16, 14, 0.5);
  padding: 6px 12px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cabezal__tools a:hover {
  background-color: #e4087e;
  border-color: #e4087e;
  color: #fff;
}
.cabezal__tools a i {
  font-size: 18px;
}
.cabezal__tools a span {
  font-weight: 600;
  font-size: 15px;
}
.cabezal__mobile {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-left: auto;
}
.cabezal__mobile i {
  font-size: 30px;
  font-size: #10100e;
}
@media screen and (min-width: 576px) {
  .cabezal__mobile {
    display: none;
  }
}

.menuMobile {
  display: none;
}
@media screen and (max-width: 576px) {
  .menuMobile {
    display: flex;
    align-items: center;
    gap: 0px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s;
  }
  .menuMobile__cont {
    left: -50%;
    transition: all 0.2s;
  }
  .menuMobile.active {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 1;
    visibility: visible;
  }
  .menuMobile__cont {
    position: absolute;
    height: 100vh;
    width: 75vw;
    top: 0;
    left: 0;
    background-color: #fff;
    padding-block: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.2s;
  }
  .menuMobile__cont--header {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-inline: 25px;
  }
  .menuMobile__cont--header .cerrarMenu {
    position: absolute;
    right: -60px;
    top: 0px;
  }
  .menuMobile__cont--header .cerrarMenu i {
    color: #fff;
    font-size: 50px;
  }
  .menuMobile__cont--header a {
    color: #10100e;
    background-color: #fff;
    border: 1px solid rgba(16, 16, 14, 0.5);
    padding: 6px 12px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
  }
  .menuMobile__cont--header a:hover {
    background-color: #e4087e;
    border-color: #e4087e;
    color: #fff;
  }
  .menuMobile__cont--header a i {
    font-size: 18px;
  }
  .menuMobile__cont--header a span {
    font-weight: 600;
    font-size: 15px;
  }
  .menuMobile__cont nav {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    align-items: flex-start;
  }
  .menuMobile__cont nav ul {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    align-items: flex-start;
  }
  .menuMobile__cont nav ul li {
    padding-inline: 25px;
    padding-block: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
    border-bottom: 1px solid #b5c3d1;
  }
  .menuMobile__cont nav ul li:first-child {
    border-top: 1px solid #b5c3d1;
  }
  .menuMobile__cont nav ul li .submenuMobile ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .menuMobile__cont nav ul li .submenuMobile ul li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
    border-bottom: none;
    padding-inline: 0px;
    padding-block: 0px;
  }
  .menuMobile__cont nav ul li .submenuMobile ul li:first-child {
    border-top: none;
  }
  .menuMobile__cont nav ul li .submenuMobile ul li a {
    font-size: 14px;
    align-items: flex-start;
    opacity: 0.75;
    padding-left: 10px;
  }
}

footer {
  max-width: 900px;
  margin: 0 auto;
  padding-block: 50px 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  z-index: 50;
}
@media screen and (max-width: 1600px) {
  footer {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  footer {
    padding-inline: 15px;
  }
}
footer .contactoPie {
  position: fixed;
  bottom: 25px;
  left: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}
@media screen and (max-width: 576px) {
  footer .contactoPie {
    position: relative;
    left: 0;
    bottom: 0;
  }
}
footer .contactoPie__item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
  color: #10100e;
  cursor: pointer;
  transition: all 0.2s;
}
@media screen and (max-width: 576px) {
  footer .contactoPie__item {
    position: relative;
    flex-direction: row;
    gap: 10px;
  }
}
footer .contactoPie__item i {
  font-size: 30px;
}
@media screen and (max-width: 576px) {
  footer .contactoPie__item i {
    font-size: 20px;
  }
}
footer .contactoPie__item span {
  font-size: 18px;
  font-weight: 800;
}
footer .contactoPie__item small {
  color: currentColor;
}
footer .contactoPie__item:hover {
  transform: translateY(-5px);
}
footer a img {
  width: 120px;
}
footer small {
  color: rgba(16, 16, 14, 0.5);
}
footer .rrss {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
footer .rrss a {
  color: rgba(16, 16, 14, 0.75);
  transition: all 0.2s;
}
footer .rrss a:hover {
  columns: #e4087e;
  opacity: 0.75;
}
footer .rrss a i {
  font-size: 24px;
}
footer nav ul {
  display: flex;
  align-items: center;
  gap: 0px;
  padding-block: 0px 25px;
}
@media screen and (max-width: 576px) {
  footer nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
footer nav ul li {
  border-right: 1px solid #e4087e;
  padding-inline: 20px 19px;
}
footer nav ul li:last-child {
  border-right: none;
}
@media screen and (max-width: 576px) {
  footer nav ul li {
    border-right: none;
    padding-inline: 0;
  }
}
footer nav ul li a {
  color: #e4087e;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
footer nav ul li a:hover {
  color: #10100e;
}

.contratar {
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .contratar {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .contratar {
    padding-inline: 15px;
  }
}
.contratar__header {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
  justify-content: space-between;
  padding-block: 30px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .contratar__header {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .contratar__header {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .contratar__header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: center;
    padding-inline: 0;
  }
}
.contratar__header::before {
  content: "";
  position: absolute;
  left: 45px;
  top: 55px;
  width: 90%;
  height: 2px;
  background-color: #dedede;
  z-index: 0;
}
@media screen and (max-width: 576px) {
  .contratar__header::before {
    width: 75%;
  }
}
.contratar__header--paso {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  height: 100%;
  z-index: 2;
}
.contratar__header--paso.activo span {
  background-color: #e4087e;
}
.contratar__header--paso.activo strong {
  color: #10100e;
}
.contratar__header--paso span {
  background-color: #fdc5e3;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  border: 5px solid #fff;
}
.contratar__header--paso strong {
  color: rgba(16, 16, 14, 0.2);
  text-align: center;
}
@media screen and (max-width: 576px) {
  .contratar__header--paso strong {
    font-size: 13px;
  }
}
.contratar__cont {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  gap: 25px;
  padding-block: 25px;
}
@media screen and (max-width: 576px) {
  .contratar__cont {
    display: flex;
    flex-direction: column;
    gap: 10px;
    gap: 30px;
  }
}
.contratar__cont--form {
  grid-column: 1/5;
  padding: 30px 25px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  overflow: hidden;
  padding-top: 75px;
}
@media screen and (max-width: 576px) {
  .contratar__cont--form {
    padding-inline: 0px;
    box-shadow: none;
    border-radius: 0;
    border: none;
    width: 100%;
  }
}
.contratar__cont--form--titulo {
  background-color: #fedeef;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contratar__cont--form--titulo--paso {
  background-color: #e4087e;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
}
.contratar__cont--form--titulo a {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}
.contratar__cont--form--titulo a span {
  font-size: 13px;
  font-weight: 600;
}
.contratar__cont--form--titulo a i {
  font-size: 20px;
}
.contratar__cont--form--titulo a:hover {
  gap: 10px;
}
.contratar__cont--form--login {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .contratar__cont--form--login {
    flex-direction: column;
  }
}
.contratar__cont--form--registro {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border-top: 1px solid #b5c3d1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 25px;
}
.contratar__cont--form--registro form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  position: relative;
}
.contratar__cont--form--registro small {
  color: #4e9fcd;
}
.contratar__cont--form--poliza {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #b5c3d1;
  border-radius: 8px;
}
.contratar__cont--form--poliza h3 {
  color: #e4087e;
  font-size: 18px;
  font-weight: 800;
  padding: 15px;
  border-bottom: 1px solid #b5c3d1;
}
.contratar__cont--form--poliza ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contratar__cont--form--poliza ul li {
  border-bottom: 1px solid #b5c3d1;
  padding-block: 10px;
  padding-inline: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}
.contratar__cont--form--poliza ul li:first-child {
  padding-top: 0;
}
.contratar__cont--form--poliza ul li span {
  text-align: right;
}
.contratar__cont--form #master_ingreso_beneficiarios {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contratar__cont--form .grupoBeneficiario {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #b5c3d1;
  padding: 15px;
  border-radius: 6px;
}
.contratar__cont--form .grupoBeneficiario h3 {
  font-size: 18px;
  color: #e4087e;
}
.contratar__cont--form .btnBeneficiario a {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #4e9fcd;
  color: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  width: fit-content;
  cursor: pointer;
  transition: all 0.2s;
}
.contratar__cont--form .btnBeneficiario a:hover {
  opacity: 0.75;
}
.contratar__cont--form .btnBeneficiario a span {
  font-size: 14px;
  font-weight: 600;
}
.contratar__cont--form--campo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  position: relative;
}
.contratar__cont--form--campo label {
  font-size: 14px;
  font-weight: 500;
}
.contratar__cont--form--campo .alert i, .contratar__cont--form--campo .alert-error i {
  position: relative;
  color: currentColor;
  right: 0;
  bottom: 0;
}
.contratar__cont--form--campo small {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 13px;
  font-weight: 600;
  color: #4e9fcd;
}
.contratar__cont--form--campo i {
  position: absolute;
  right: 15px;
  bottom: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #4e9fcd;
}
.contratar__cont--form--campo .checkInInput {
  position: absolute;
  right: 15px;
  bottom: 16px;
}
.contratar__cont--form--campo .grupoCheck {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 576px) {
  .contratar__cont--form--campo .grupoCheck.checkMascota {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.contratar__cont--form--campo #cliente_depto_di,
.contratar__cont--form--campo #cliente_ciudad_di,
.contratar__cont--form--campo #hogar_ciudad_di,
.contratar__cont--form--campo #hogar_depto_di,
.contratar__cont--form--campo #hogar_codigo_di {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.contratar__cont--form--campo #cliente_depto_di select,
.contratar__cont--form--campo #cliente_ciudad_di select,
.contratar__cont--form--campo #hogar_ciudad_di select,
.contratar__cont--form--campo #hogar_depto_di select,
.contratar__cont--form--campo #hogar_codigo_di select {
  width: 100%;
}
.contratar__cont--form--campo.campoPregunta {
  gap: 10px;
  padding-block: 25px;
  border: 1px solid #b5c3d1;
  border-radius: 10px;
  padding: 15px 18px;
  position: relative;
}
.contratar__cont--form--campo.campoPregunta i {
  position: absolute !important;
  top: 5px;
  right: 5px;
  cursor: pointer;
  transition: all 0.2s;
}
.contratar__cont--form--campo.campoPregunta i:hover {
  opacity: 0.7;
}
.contratar__cont--form--campo.campoPregunta h3 {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contratar__cont--lateral {
  grid-column: 5/8;
  padding: 30px 25px;
  border-radius: 15px;
  height: fit-content;
  position: sticky;
  top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .contratar__cont--lateral {
    padding-inline: 0px;
    box-shadow: none;
    border-radius: 0;
    border: none;
    width: 100%;
  }
}
.contratar__cont--lateral h4 {
  color: #e4087e;
}
.contratar__cont--lateral ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contratar__cont--lateral ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  padding-block: 10px;
}
.contratar__cont--lateral ul li h5 {
  font-size: 18px;
  font-weight: 600;
}
.contratar__cont--lateral ul li span {
  font-size: 14px;
}
.contratar__cont--lateral ul li strong {
  margin-left: auto;
  flex-shrink: 0;
}
.contratar__cont--lateral ul li h4 {
  background-color: #4e9fcd;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
}
.contratar__cont--lateral--total {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #b5c3d1;
}
.contratar__cont--lateral--total h4 {
  font-size: 18px;
  font-weight: 600;
}
.contratar__cont--lateral--total strong {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 30px;
  font-weight: 800;
}
.contratar__cont--lateral--financiado {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: rgba(78, 159, 205, 0.2);
  border-radius: 6px;
  padding: 8px 12px;
}
.contratar__cont--lateral--financiado span {
  font-size: 13px;
  color: #4e9fcd;
  font-weight: 600;
}
.contratar__cont--lateral--financiado strong {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  color: #4e9fcd;
}
.contratar__cont--lateral--financiado strong small {
  font-size: 14px;
  font-weight: 400;
}

.resumenContrato {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: #d9eaf4;
  border: 1px solid #8abfde;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.resumenContrato h3 {
  font-size: 18px;
}
.resumenContrato span {
  font-size: 14px;
}
.resumenContrato.mascota {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: row !important;
}
.resumenContrato.mascota figure {
  overflow: hidden;
  border-radius: 25px;
}
.resumenContrato.mascota figure img {
  max-width: 120px;
}
.resumenContrato__data {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.condicionesPoliza {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid #b5c3d1;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.condicionesPoliza__descarga {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-block: 0px 15px;
  justify-content: center;
}
.condicionesPoliza__descarga a {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #e4087e;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  width: 100%;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.condicionesPoliza__descarga a:hover {
  opacity: 0.75;
}
.condicionesPoliza__descarga a span {
  font-size: 18px;
  font-weight: 600;
}

.seleccionarPago {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.seleccionarPago h2 {
  font-size: 26px;
  font-weight: 500;
}
.seleccionarPago__bloque {
  border: 1px solid #b5c3d1;
  border-top: none;
  border-radius: 0 0 6px 6px;
}
.seleccionarPago__bloque--item {
  border-bottom: 1px solid #b5c3d1;
  padding: 15px;
  transition: all 0.2s;
}
.seleccionarPago__bloque--item.checked {
  background-color: #4e9fcd;
  color: #fff;
}
.seleccionarPago__bloque--item.checked span {
  color: #fff;
}
.seleccionarPago__bloque--item.checked:hover {
  background-color: #4e9fcd;
}
.seleccionarPago__bloque--item.checked figure::after {
  content: "\f26e";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 5;
  background-color: #40a94e;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border-radius: 50px;
  padding: 5px;
}
.seleccionarPago__bloque--item:hover {
  background-color: #fdd4ea;
}
.seleccionarPago__bloque--item--cont {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.seleccionarPago__bloque--item--cont figure {
  position: relative;
  flex-shrink: 0;
}
.seleccionarPago__bloque--item--cont figure img {
  max-height: 50px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #b5c3d1;
}
.seleccionarPago__bloque--item--cont--data {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-left: 15px;
}
.seleccionarPago__bloque--item--cont--data h3 {
  font-size: 18px;
  font-weight: 600;
}
.seleccionarPago__bloque--item--cont--data span {
  font-size: 14px;
  font-weight: 500;
}
.seleccionarPago .titulo_tipopago,
.seleccionarPago .titulo_tipopago_off {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  color: #10100e;
  padding: 10px 12px;
  border-radius: 6px;
  margin: 0;
  background: none;
  background-color: rgba(181, 195, 209, 0.5);
  position: relative;
  border: 1px solid #b5c3d1;
  margin-top: 10px;
  transition: all 0.2s;
}
.seleccionarPago .titulo_tipopago:hover,
.seleccionarPago .titulo_tipopago_off:hover {
  background-color: rgba(181, 195, 209, 0.75);
}
.seleccionarPago .titulo_tipopago::after,
.seleccionarPago .titulo_tipopago_off::after {
  content: "\f2e6";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.2s;
}
.seleccionarPago .titulo_tipopago::after:hover,
.seleccionarPago .titulo_tipopago_off::after:hover {
  opacity: 0.75;
}
.seleccionarPago .titulo_tipopago span,
.seleccionarPago .titulo_tipopago_off span {
  font-size: 13px;
}
.seleccionarPago .titulo_tipopago {
  border-radius: 6px 6px 0 0;
  background-color: rgba(181, 195, 209, 0.9);
}
.seleccionarPago .titulo_tipopago::after {
  content: "\f4fa";
}

.bloqueMP {
  display: flex;
  flex-direction: column;
  gap: 0px;
  border: 1px solid #b5c3d1;
  border-radius: 10px;
  margin-top: 10px;
  padding: 25px 20px;
  position: relative;
}
.bloqueMP form fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.bloqueMP__campos {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.bloqueMP__campos--grupo {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .bloqueMP__campos--grupo {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.bloqueMP__campos .campoMP {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  position: relative;
}
.bloqueMP__campos .campoMP label {
  font-size: 14px;
  font-weight: 500;
}

.soa__buscador--boton {
  position: absolute;
  bottom: 0;
  right: 0;
}
.soa__buscador--boton input {
  font-size: 13px;
  border-radius: 0 10px 10px 0;
}

.soa__buscador--botones {
  display: flex;
  align-items: center;
  gap: 10px;
}

.experiencia {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.experiencia__opciones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-block: 15px;
}
.experiencia__opciones a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  transition: all 0.2s;
}
.experiencia__opciones a:hover {
  color: #e4087e;
}
.experiencia__opciones a i {
  font-size: 40px;
}
.experiencia__opciones a span {
  font-size: 16px;
  font-weight: 700;
  padding-inline: 8px;
  padding-block: 4px;
  position: relative;
}
.experiencia__opciones a span.visible {
  background-color: #e4087e;
  color: #fff;
  border-radius: 5px;
}
.experiencia__opciones a span.visible:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 15px;
  height: 15px;
  transform: rotate(-45deg) translateY(-37%) translateX(-36%);
  background-color: #e4087e;
  z-index: -1;
  border-radius: 2px;
}
.experiencia__opciones--check {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.experiencia__opciones--check--item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
}
.experiencia__opciones--check--item input[type=radio] {
  height: 15px;
}
.experiencia__opciones--check a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  padding: 15px;
  background-color: #e4087e;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  transition: all 0.2s;
}
.experiencia__opciones--check a:hover {
  background-color: #4e9fcd;
}
.experiencia #exp_bloque2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  border: 1px solid #b5c3d1;
  border-radius: 15px;
  padding: 25px;
}
.experiencia #exp_bloque2 h6 {
  font-size: 18px;
}
.experiencia #buena_experiencia {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.experiencia #otro_motivo {
  width: 100%;
}
.experiencia #otro_motivo input {
  width: 100%;
}

.campoVendedor {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.campoVendedor #paso2vendedor {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.campoVendedor #paso2vendedor input[type=button] {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 0 6px 6px 0;
}

.login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .login {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.login__design {
  background: linear-gradient(220deg, white 0%, #f2f5fc 40%, #dde5f7 100%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%25'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
  background-blend-mode: multiply;
  filter: contrast(1.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  position: relative;
  padding-inline: 50px;
}
@media screen and (max-width: 576px) {
  .login__design {
    height: auto;
    padding-block: 120px 75px;
    padding-inline: 15px;
    align-items: center;
  }
}
.login__design .bg-video {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.75;
  mask-image: linear-gradient(to top, transparent 0px, black 400px);
  -webkit-mask-image: linear-gradient(to top, transparent 0px, black 400px);
}
.login__design--info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 500px;
  align-items: center;
}
.login__design--info h4 {
  font-weight: 400;
}
.login__design--info svg {
  width: 380px;
  max-width: 380px;
  fill: #e4087e;
}
@media screen and (max-width: 576px) {
  .login__design--info svg {
    width: 280px;
  }
}
.login__design--info img {
  max-width: 380px;
}
@media screen and (max-width: 576px) {
  .login__design--info img {
    width: 250px;
  }
}
.login__design--info img.sancorLogin {
  max-width: 180px;
}
.login__design--tools {
  position: absolute;
  top: 25px;
  left: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.login__design--tools #cambiarModeMobile {
  display: none;
}
@media screen and (max-width: 576px) {
  .login__design--tools #cambiarModeMobile {
    display: flex;
  }
}
.login__design--tools #cambiarMode {
  display: none;
}
.login__design--tools div,
.login__design--tools a {
  color: #e4087e;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.login__design--tools div span,
.login__design--tools a span {
  font-size: 13px;
  font-weight: 500;
}
.login__design--tools div i,
.login__design--tools a i {
  font-size: 20px;
}
.light-mode .login__design--tools div,
.light-mode .login__design--tools a {
  color: #fff;
}
.login__design--tools div:hover,
.login__design--tools a:hover {
  color: #1975aa;
}
.login__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  width: 100%;
  align-items: center;
  padding: 25px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .login__form {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .login__form {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .login__form {
    border-radius: 15px 15px 0 0;
    z-index: 2;
    background-color: #fff;
    margin-top: -25px;
    width: 100%;
  }
}
.login__form h2 {
  text-align: center;
}
.login__form--ingresar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.login__form--ingresar form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 25px;
}
.login__form--ingresar form .loginCampo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.login__form--ingresar form .loginCampo input {
  width: 100%;
}
.login__form--ingresar form .loginCampo label {
  font-size: 14px;
}
.login__form--ingresar form .loginCampo .linkOlvido {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 13px;
  font-weight: 600;
  color: #4e9fcd;
  cursor: pointer;
}
.login__form--ingresar form .loginCampo .linkOlvido:hover {
  text-decoration: underline;
}
.login__form--ingresar form .loginCampo i {
  position: absolute;
  font-size: 24px;
  right: 15px;
  bottom: 20px;
  cursor: pointer;
  transition: all 0.1s;
  color: #e4087e;
}
.login__form--ingresar form .loginCampo i:hover {
  scale: 1.1;
  color: #4e9fcd;
}
.login__form--ingresar--registro {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding-block: 10px;
}
.login__form--ingresar--registro a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  justify-content: center;
  color: #4e9fcd;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.login__form--ingresar--registro a:hover {
  text-decoration: underline;
}

.recuperarClave {
  position: absolute;
  background-color: #00000088;
  z-index: 2;
  height: 100vh;
  width: 100vw;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.recuperarClave.active {
  opacity: 1;
  visibility: visible;
}
.recuperarClave__popUp {
  position: absolute;
  width: 90vw;
  max-width: 450px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s;
  scale: 0.1;
}
.active .recuperarClave__popUp {
  scale: 1;
}
.recuperarClave__popUp .cerrarRecuperar {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: #e4087e;
  border-radius: 60px;
  padding: 4px 6px;
}
.recuperarClave__popUp .cerrarRecuperar i {
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}
.recuperarClave__popUp h4 {
  font-size: 18px;
}
.recuperarClave__popUp form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.recuperarClave__popUp form .loginCampo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.recuperarClave__popUp form .loginCampo label {
  font-size: 14px;
}
.recuperarClave__popUp form .loginCampo input {
  width: 100%;
}

.miCuenta {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 600px;
  margin: 0 auto;
  padding-block: 30px;
}
@media screen and (max-width: 1600px) {
  .miCuenta {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .miCuenta {
    padding-inline: 15px;
  }
}
.miCuenta h3 {
  font-size: 24px;
  font-weight: 700;
  color: #4e9fcd;
}
.miCuenta .bloqueForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.miCuenta .campoForm {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.miCuenta .campoForm input {
  width: 100%;
}
.miCuenta .campoForm label {
  font-size: 14px;
}
.miCuenta .bajarCuenta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #b5c3d1;
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 13px;
}
.miCuenta .bajarCuenta a {
  color: red;
  font-weight: 700;
}
.miCuenta .bajarCuenta span,
.miCuenta .bajarCuenta a {
  font-size: 13px;
}

.contenido {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-block: 30px;
}
@media screen and (max-width: 1600px) {
  .contenido {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .contenido {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .contenido {
    padding-block: 15px;
  }
}
.contenido blockquote {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 35px;
  border-radius: 10px;
  background-color: #f2f5fc;
  color: #10100e;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  font-style: italic;
}
.contenido__galeria {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  .contenido__galeria {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .contenido__galeria {
    padding-inline: 15px;
  }
}
.contenido__galeria--ampliada {
  padding-bottom: 0;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .contenido__galeria--ampliada {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .contenido__galeria--ampliada {
    padding-inline: 15px;
  }
}
.contenido__galeria--ampliada figure {
  border-radius: 10px;
  overflow: hidden;
}
.contenido__galeria--mini {
  padding-bottom: 0;
}
.contenido__galeria--mini figure {
  border-radius: 8px;
  overflow: hidden;
}
.contenido__galeria figure {
  overflow: hidden;
  aspect-ratio: 1.6180015915;
}
.contenido figure {
  border-radius: 15px;
  overflow: hidden;
}
.contenido__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contenido__tags--fecha {
  font-size: 18px;
  color: #159659;
}
.contenido__tags span {
  color: #feedf6;
}
.contenido__tags--subtitulo {
  font-size: 18px;
  color: #159659;
  font-weight: 800;
  text-transform: uppercase;
}
.contenido__componentes {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1600px) {
  .contenido__componentes {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .contenido__componentes {
    padding-inline: 15px;
  }
}
.contenido__componentes .componente {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 25px;
}
.contenido__componentes .componente #indice {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contenido__componentes .componente .zona_1 {
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.contenido__componentes .componente .zona_1 .zona_1__header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
}
.contenido__componentes .componente .zona_1 .zona_1__header a {
  color: #e4087e;
  transition: all 0.2s;
}
.light-mode .contenido__componentes .componente .zona_1 .zona_1__header a {
  color: #fff;
}
.contenido__componentes .componente .zona_1 .zona_1__header a h2 {
  font-size: 18px;
}
.contenido__componentes .componente .zona_1 .zona_1__header a:hover {
  opacity: 0.8;
}
.contenido__componentes .componente .item {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 576px) {
  .contenido__componentes .componente .item {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.contenido__componentes .componente .item.invertido {
  flex-direction: row-reverse;
}
@media screen and (max-width: 576px) {
  .contenido__componentes .componente .item.invertido {
    flex-direction: column;
  }
}
.contenido__componentes .componente .item.centrado {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contenido__componentes .componente .item.archivo {
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.contenido__componentes .componente .item.archivo .archivo__header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
}
.contenido__componentes .componente .item.archivo .archivo__header h2 {
  font-size: 18px;
  justify-content: flex-start;
  font-weight: 700;
}
.contenido__componentes .componente .item.archivo a {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #e4087e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.2s;
}
.contenido__componentes .componente .item.archivo a span {
  font-weight: 700;
}
.contenido__componentes .componente .item.archivo a i {
  font-size: 24px;
}
.contenido__componentes .componente .item.archivo a:hover {
  background-color: #4e9fcd;
  color: #fff;
}
.contenido__componentes .componente .item.relacionado {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.contenido__componentes .componente .item.relacionado h2 a {
  font-size: 28px;
}
.contenido__componentes .componente .item figure {
  flex-shrink: 0;
}
.contenido__componentes .componente .item figure div img {
  max-width: 1080px;
}
@media screen and (max-width: 576px) {
  .contenido__componentes .componente .item figure div img {
    width: 100%;
  }
}
.contenido__componentes .componente .item .item-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contenido__componentes .componente .item .item-info h2 {
  font-size: 28px;
}
.contenido__componentes .componente .item .item-info h2 a {
  font-size: 28px;
}
.contenido__componentes .componente .item img {
  border-radius: 15px;
  overflow: hidden;
}
.contenido__componentes .componente .item .ficha img {
  border-radius: 200px;
  overflow: hidden;
}
.contenido__componentes .componente .video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
}
.contenido__componentes .componente .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.seccion-items {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 1600px) {
  .seccion-items {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .seccion-items {
    padding-inline: 15px;
  }
}
.seccion-items__item {
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 576px) {
  .seccion-items__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.seccion-items__item--texto {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.seccion-items__item--texto h2 {
  font-size: 28px;
}
.seccion-items__item--texto h2 a {
  font-size: 28px;
}
.seccion-items__item--texto a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.seccion-items__item.invertido {
  flex-direction: row-reverse;
}
@media screen and (max-width: 576px) {
  .seccion-items__item.invertido {
    flex-direction: column;
  }
}
.seccion-items__item.centrado {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.seccion-items__item figure {
  flex-shrink: 0;
}
.seccion-items__item figure div img {
  max-width: 1080px;
}
@media screen and (max-width: 576px) {
  .seccion-items__item figure div img {
    width: 100%;
  }
}
.seccion-items__item img {
  border-radius: 15px;
  overflow: hidden;
}

.mispolizas {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  padding-top: 15px;
  flex-shrink: 0;
}
@media screen and (max-width: 1600px) {
  .mispolizas {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .mispolizas {
    padding-inline: 15px;
  }
}
.mispolizas__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 15px;
}
.mispolizas__item h3 {
  font-size: 22px;
}
.mispolizas__item--pie {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  border-top: 1px solid #b5c3d1;
  padding-top: 15px;
}
.mispolizas__item--pie strong {
  font-size: 24px;
  font-weight: 600;
}
.mispolizas__item--pie span {
  color: #e4087e;
}
.mispolizas__item--pie span.pendiente {
  color: #4e9fcd;
}
.mispolizas__item--pie span.anulada {
  color: red;
}
.mispolizas__item--pie a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #e4087e;
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  transition: all 0.2s;
}
.mispolizas__item--pie a:hover {
  background-color: rgba(228, 8, 126, 0.75);
}
.mispolizas__item--pie a span {
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.formDenuncia {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 1024px) {
  .swiper-button-prev,
.swiper-button-next {
    transition: all 0.2s;
    opacity: 0;
    transform: translateY(5px);
  }
}
@media screen and (max-width: 576px) {
  .swiper-button-prev,
.swiper-button-next {
    opacity: 0.5;
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 15px;
  border: 1px solid #e4087e;
  padding: 10px 14px;
  border-radius: 50px;
  color: #fff;
  background-color: #e4087e;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  background-color: #e4087e;
  color: #fff;
  border-color: #e4087e;
  opacity: 1;
  transform: translateY(-5px);
}
@media (min-width: 1024px) {
  .swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0;
    transform: translateY(5px);
  }
}

.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  opacity: 1;
  transform: translateY(0px);
}
.swiper-container:hover .swiper-button-prev.swiper-button-disabled,
.swiper-container:hover .swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  transform: translateY(0px);
}

.swiper-pagination-bullets {
  display: flex;
  align-items: center;
  gap: 0px;
  justify-content: center;
  padding-block: 30px;
}
.swiper-pagination-bullets span.swiper-pagination-bullet {
  width: 18px;
  height: 5px;
  border-radius: 3px;
  background-color: #2b2b26;
}

.contenido__galeria--mini .swiper-slide-thumb-active {
  opacity: 1 !important;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
.contenido__galeria--mini .swiper-slide {
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.2s;
}
.contenido__galeria--mini .swiper-slide:hover {
  opacity: 0.75;
}

.help {
  background-color: #9ecae3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  padding: 10px 10px;
  border-radius: 6px;
  border: 1px solid #3386b5;
  line-height: 1.5;
  color: #fff;
}
.help.respuesta {
  font-size: 14px;
  padding: 15px 16px;
}
.help span {
  font-size: 12px;
}

.spinner {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 20px auto;
  background-color: transparent;
  border-radius: 50%;
  border: 8px solid transparent;
  border-top: 8px solid red;
  border-bottom: 8px solid red;
  animation: spin 1.5s linear infinite;
  clip-path: circle(50%) inset(25%);
  background: transparent;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.help-popup {
  position: fixed;
  bottom: 15px;
  left: 15px;
  background-color: #e4087d9c;
  color: #fff;
  backdrop-filter: blur(5px);
  border-radius: 10px;
  z-index: 10;
  max-width: 500px;
}
@media screen and (max-width: 576px) {
  .help-popup {
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 0;
  }
}
.help-popup__cont {
  position: relative;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.help-popup__cont h4 {
  padding-top: 10px;
}
@media screen and (max-width: 576px) {
  .help-popup__cont {
    max-height: 90vh;
    overflow-y: scroll;
  }
}
.help-popup__cont figure {
  border-radius: 10px;
  width: 100%;
  height: auto;
}
.help-popup__cont figure img {
  width: 100%;
  height: auto;
}
.help-popup__cerrar {
  position: absolute;
  top: -15px;
  right: -10px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #10100e;
  color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
  width: fit-content;
  cursor: pointer;
  z-index: 11;
  transition: all 0.2s;
}
.help-popup__cerrar:hover {
  transform: translateY(-5px);
}
.help-popup__cerrar i {
  color: currentColor;
}
@media screen and (max-width: 576px) {
  .help-popup__cerrar {
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.alert {
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  background-color: #0087ef;
  border: 1px solid #004d89;
  font-size: 13px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: #fff;
}
.alert a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
.alert a:hover {
  opacity: 0.75;
}
.alert.alert-column {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  position: relative;
}
.alert.alert-column i {
  position: absolute;
  top: 5px !important;
  right: 5px !important;
  font-size: 20px;
  color: #004d89;
  cursor: pointer;
  color: #fff !important;
}
.alert.admin {
  background-color: #0087ef;
  color: #004d89;
}
.alert.alert-warning {
  background-color: #f5a01b;
  border: 1px solid #a36607;
  margin-block: 10px;
}
.alert.alert-mensaje {
  background-color: rgba(210, 52, 55, 0.25);
  border: 1px solid #831d1f;
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #831d1f;
}
.alert.alert-mensaje a {
  color: currentColor;
}
.alert.alert-error {
  background-color: #d23437;
  border: 1px solid #831d1f;
}
.alert.alert-ok {
  background-color: #30d058;
  border: 1px solid #1c7e35;
}
.alert.alert-info {
  background-color: #40a94e;
  border: 1px solid #245f2c;
}
.alert.alert-info span {
  color: #fff;
}
.alert span {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
}
.alert i {
  font-size: 16px;
}

.loginGoogle {
  display: flex;
  align-items: center;
  gap: 10px;
}
.loginGoogle a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  padding: 15px;
  border-radius: 10px;
  background-color: #fff;
  border: 2px solid #4e9fcd;
  color: #e4087e;
  transition: all 0.2s;
}
.loginGoogle a:hover {
  color: #fff;
  background-color: #10100e;
  border-color: #10100e;
}
.loginGoogle a span {
  font-weight: 700;
}
.loginGoogle a img {
  width: 20px;
}

.contenido__galeria--mini .swiper-slide-thumb-active {
  opacity: 1 !important;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}
.contenido__galeria--mini .swiper-slide {
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.2s;
}
.contenido__galeria--mini .swiper-slide:hover {
  opacity: 0.75;
}

.galeriaThumb {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media screen and (max-width: 576px) {
  .galeriaThumb {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.galeriaThumb a {
  border-radius: 5px;
  overflow: hidden;
  width: 1 column;
  transition: all 0.2s;
}
.galeriaThumb a img {
  width: 100%;
  object-position: 50% 50%;
}

.grupoForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.grupoForm hr {
  border: none;
  height: 1px;
  background-color: #b5c3d1;
  margin: 1.5rem 0;
}
.grupoForm__header {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.grupoForm__header a {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}
.grupoForm__header a:hover {
  opacity: 0.75;
}
.grupoForm__header a span {
  font-weight: 700;
  font-size: 13px;
}

.mensaje {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 100px;
  align-items: center;
}
@media screen and (max-width: 1600px) {
  .mensaje {
    padding-inline: 15px;
  }
}
@media screen and (max-width: 576px) {
  .mensaje {
    padding-inline: 15px;
  }
}
.mensaje p, .mensaje h2 {
  text-align: center;
}
.mensaje .pedidoConfirmado {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 20px;
  border: 1px solid #b5c3d1;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
}

span.icono-tick-2 {
  font-size: 40px;
}
span.icono-tick-2::before {
  content: "\f292";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  height: 30px !important;
  color: #333333;
  padding: 0px;
  border-radius: 4px !important;
  padding-inline: 5px !important;
  width: 90px;
  font-size: 14px;
}
.ui-datepicker select.ui-datepicker-month::placeholder,
.ui-datepicker select.ui-datepicker-year::placeholder {
  font-size: 14px !important;
}

.ui-widget-header {
  border: 1px solid #aaaaaa;
  background: #cccccc;
  color: #222222;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.cargador {
  position: fixed;
  z-index: 9999;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  background-image: url("/imagenes/img_presentacion/cargador.gif");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 1;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  font-weight: bold;
  color: #1c94c4;
  border-radius: 0%;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #999999;
  background: #dadada;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #d3d3d3;
  background: #e6e6e6;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #999999;
  background: #dadada;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  font-weight: bold;
  color: #e4087e;
  border-radius: 0%;
}

.calendario {
  background: #ffffff url("/imagenes/img_presentacion/ico_calendario.png") 15px 12px no-repeat;
  padding-left: 50px;
}

.soa__buscador--botones {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 15px;
}
.soa__buscador--botones input[type=button] {
  background-color: #fff;
  border: 1px solid #e4087e;
  color: #e4087e;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
}
.soa__buscador--botones input[type=button]:hover {
  background-color: #e4087e;
  color: #fff;
}

.ui-widget-content {
  padding: 5px 10px !important;
  border-radius: 0 0 5px 5px;
}
.ui-widget-content .ui-menu-item {
  font-size: 14px !important;
  font-weight: 500 !important;
}
.ui-widget-content .ui-menu-item .ui-menu-item-wrapper {
  padding: 6px !important;
}
.ui-widget-content .ui-menu-item .ui-state-active {
  border: none !important;
  background: none !important;
  background-color: #e4087e !important;
  color: #fff !important;
  font-weight: 500 !important;
}

.remodal {
  border-radius: 20px;
  padding: 35px;
  max-width: 700px !important;
}
.remodal .cont_contacto .contacto {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.remodal .cont_contacto .contacto input, .remodal .cont_contacto .contacto select, .remodal .cont_contacto .contacto textarea {
  width: 100%;
}
.remodal .cont_contacto .contacto #cmensaje {
  display: flex;
  flex-direction: column;
  gap: 10px;
  display: flex !important;
  align-items: flex-start;
}
.remodal .cont_contacto .contacto #cmensaje textarea {
  width: 100%;
  resize: none;
}
.remodal .cont_contacto .contacto .grupoCheck {
  display: flex;
  align-items: center;
  gap: 30px;
}
.remodal .cont_contacto .contacto .contratar__cont--form--campo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.text-center {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.campoMP label img {
  position: absolute;
  right: 15px;
  bottom: 5px;
}

.baja_botones {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 25px 10px;
  justify-content: center;
}

#vtnvideo_mostrar {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
#vtnvideo_mostrar video {
  overflow: hidden;
  border-radius: 10px;
}
#vtnvideo_mostrar figure {
  overflow: hidden;
  border-radius: 10px;
}
#vtnvideo_mostrar h2 {
  font-size: 18px;
  font-weight: 600;
}

.remodal:has(#vtnvideo_mostrar) {
  border-radius: 20px;
  padding: 10px;
}

.remodal:has(#vtnvideo_mostrar) .remodal-close {
  right: -10px;
  top: -10px;
  left: auto;
  background-color: #000;
  border-radius: 50px;
}

/*# sourceMappingURL=main.css.map */
