@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&display=swap");

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #444444;
}

section {
  padding: 20px;
  position: relative;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
  color: #1d9d6f;
}
h1 {
  font-weight: 800;
  font-size: 3rem;
}
.grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}
.entradas .grid {
  justify-content: start;
}
.grid.center {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}
.col-2 > div {
  flex-basis: calc(50% - 20px);
  box-sizing: border-box;
  text-align: left;
}
/*
.principales .col-2 > div {
    flex-basis: auto;
}
    */
.col-3 > div {
  flex-basis: calc(33% - 20px);
  box-sizing: border-box;
}
.col-4 > div {
  flex-basis: calc(25% - 20px);
  box-sizing: border-box;
}
.col-5 > div {
  flex-basis: 20%;
}
button {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 16px;
  color: #ffffff;
  background-color: #1d9d6f;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #9bd7b8;
}
.container {
  width: 96%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;

  flex-wrap: nowrap;
  box-sizing: border-box;
}
.principales .container {
  align-items: normal;
}
.container.wide {
  max-width: 1600px;
}
.container.end {
  justify-content: end;
}
.solo-movil {
  display: none;
}
.solo-desktop {
  display: block;
}
/* ====== NAVEGACIÓN ====== */

/* ====== HERO ====== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #fff;
  text-align: left;
}

.hero-text {
  padding-right: 20px;
  flex-basis: 60%;
}

.hero-text h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: #1d9d6f;
  margin: 0;
}

.hero-text p {
  font-size: 3rem;
  color: #444444;
  margin-top: 10px;
}

.hero-img {
  flex: 1;
  text-align: center;
  flex-basis: 30%;
  color: #c1c1c1;
  font-size: 2.8rem;
}
.hero-img a {
  color: #999;
  font-weight: 600;
  margin-top: 0.5rem;
  font-size: 1.5rem;
}
.hero-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin-bottom: 0.5rem;
}
.cobertura .hero {
  background-image: url("../imagenes/cobertura/imagen_cobertura_desktop_1-100.jpg");
  padding: 100px 0;
  background-size: cover;
}
.cobertura .hero h2 {
  color: #1d9d6f;

  font-size: 3.6rem;
}
.faqs .hero {
  background-image: url("../imagenes/dudas_fondo-100.jpg");
  background-size: cover;
  padding: 150px 0;
}
.blog .hero {
  background-image: url("../imagenes/blog_fondo-100.jpg");
  background-size: cover;
  background-position: center;
  padding: 150px 0;
}
.blog .hero-text p {
  margin: 0;
}

/* ====== ACTIONS ====== */
.action {
  flex-basis: 48%;
}
.action button {
  width: 100%;
  padding: 5px;
  margin: 0;
}
.action a {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
}

/* ====== SERVICIOS DESTACADOS ====== */
.servicios {
  padding: 50px 0;
  text-align: center;
}

.servicios h2 {
  font-size: 30pt;
  color: #1d9d6f;
}

.servicio {
  width: 130px;
  text-align: center;
  margin: 0 auto;
}

.servicio img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.servicio h3 {
  font-size: 16px;
  color: #444444;
  margin-top: 10px;
  font-weight: 400;
}
.servicios .slider-nav {
  display: none;
}
/* ====== FORM 1 ====== */
.home #comencemos {
  background-color: #e7f5f0;
}
.form1 .form-container {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: none;
  border: none;
  background: transparent;
}

.form1 .input-group {
  position: relative;
  display: flex;
  width: 100%;
}

.form1 .input-field {
  width: 100%;
  padding: 15px;
  padding-right: 130px; /* Espacio para el botón */
  border: 2px solid #ddd;
  border-radius: 50px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
  margin: 0;
}

.form1 .input-field:focus {
  border-color: #1d9d6f;
}

.form1 .input-field::placeholder {
  color: #aaa;
  font-size: 1.3rem;
}

.form1 .submit-button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 0 25px;
  background-color: #1d9d6f;
  color: white;
  border: none;
  border-radius: 50px 50px;
  font-size: 1.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 0;
  text-transform: none;
}

.submit-button:hover {
  background-color: #9bd7b8;
}
/* ====== CARRUSEL ====== */
.precios {
  background-color: #e7f5f0;
  padding: 50px 0;
  text-align: center;
}

.precios h2 {
  font-size: 30pt;
  color: #1d9d6f;
}

.swiper-slide {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.swiper {
  width: 600px;
  height: 300px;
}
.faq-pricing-container {
  display: flex;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  display: none;
}
.faq-pricing-container li {
  transform: scale(0.8);
  flex-basis: 30%;
}
.faq-pricing-container li .pricing-card {
  width: 100%;
}
/* ====== PRICING LIST ===== */

.pricing-card {
  width: 350px;
  border-radius: 50px;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
}

.pricing-card.resaltado {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.pricing-card.plan-seleccionado {
  border: 3px solid #444444;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.seleccionar-plan.btn-activo {
  background-color: #32CD32;
  color: white;
  font-weight: bold;
  border: none;
}

.seleccionar-plan.btn-activo:hover {
  background-color: #32CD32;
  color: white;
}

.pricing-header {
  padding: 24px;
  background-color: #1d9d6f;
  text-align: center;
  border-bottom: 1px solid #e9ecef;
  position: relative;
}

.plan-name {
  margin: 0 0 8px;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
}

.plan-price {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.plan-frequency {
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
}

.pricing-body {
  padding: 20px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 12px;
  margin: 5px 0;
  background-color: #9bd7b8;
  color: #fff;
  border-radius: 30px;
  height: 42px;
  align-items: center;
  box-sizing: border-box;
  text-align: left;
}
.pricing-item.cobertura {
  background-color: #444444;
}
.pricing-item.cobertura br {
  display: none;
}

.pricing-item:last-child {
  border-bottom: none;
}

.item-description {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}

.item-price {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: right;
}

.pricing-button {
  display: block;
  width: 80%;
  margin: 0 auto 24px;
  padding: 12px;
  background-color: #fff;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  border: 1px solid #1d9d6f;
  color: #1d9d6f;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-button:hover {
  background-color: #147f57;
  color: #fff;
}
.pricing-button:hover a {
  color: #fff;
}
.pricing-button a {
  display: block;
}
.pricing-card sup {
  background: #1d9d6f;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  line-height: 20px;
  margin: -5px 0 0 5px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  /* animation: pulse-animation 2s infinite;*/
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
.slider-nav {
  filter: none;
  z-index: 9;
}

button.slider-nav:hover {
  background-color: transparent;
}
.slider-nav-caret .slider-nav::after {
  background: url(../imagenes/planes_flecha_izquierda.png);
  background-size: contain;
  mask: none !important;
  background-repeat: no-repeat;
}
button.slider-nav:focus {
  background: none !important;
}

.add {
  display: flex;
  justify-content: space-between;
}
.img-add {
  position: absolute;
  bottom: 0;
  width: 200px;
}
.img-add.left {
  left: 0;
}
.img-add.right {
  right: 0;
}
.img-add img {
  width: 100%;
}
.post {
  margin-top: 40px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
}
/* ====== FULL BACKGROUND ====== */
.full-background {
  height: 1024px;
  background: url("../imagenes/home-full-background.jpg");
  background-size: cover;
  background-position: 70% center;
  /* text-align: right; */
  /* padding: 30px 0 30px 0; */
}

@media (min-width: 768px) and (max-width: 1200px) {
  .full-background {
    height: 900px; /* o el valor que necesites */
  }
}
@media (max-width: 768px) {
  .full-background {
    height: 1080px; /* o el valor que necesites */
  }
}

@media (max-width: 333px) {
  .full-background {
    height: 1148px; /* o el valor que necesites */
  }
}

.full-background p {
  font-size: 3rem;
  color: #444444;
}

.full-background h1 {
  color: #1d9d6f;
}
.cobertura .full-background {
  background-image: url("../imagenes/cobertura/como-funciona-fondo.jpg");
  text-align: left;
  padding: 150px 0;
}
.home .full-background .hero-text {
  flex-basis: auto;
  position: relative;
}
.corazones span {
  position: absolute;
}
.corazones span.crz_1 {
  left: 0;
  margin-top: -130px;
  margin-left: -80px;
}
.corazones span.crz_2 {
  left: 0;
  margin-left: -70px;
  margin-top: -50px;
}
.corazones span.crz_3 {
  right: 0;
}
.corazones span.crz_4 {
  right: 20px;
}

/* ====== FORMULARIO ====== */
.contacto {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

form {
  max-width: 100%;
  margin: auto;
  text-align: left;

  padding: 20px;
}

label {
  font-weight: 400;
  display: block;
  margin-top: 10px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #999;
  border-radius: 0;
  box-sizing: border-box;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /*
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    */
  border: 1px solid rgba(255, 255, 255, 0.37);
  padding: 20px;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 15px;
}

.underline-input {
  width: 100%;
  padding: 10px;
  border: none;
  border: 1px solid #ddd;
  outline: none;
  transition: border-color 0.3s ease;
  font-size: 16px;
  background: transparent;
}

.underline-input:focus {
  border-bottom-color: #1d9d6f;
}

.underline-input::placeholder {
  color: #999;
}

.radio-group {
  display: flex;
  align-items: start;
  gap: 20px;
  padding: 10px 0;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #444;
  font-size: 14px;
}

.radio-option input[type="radio"] {
  cursor: pointer;
  width: auto;
}

@media (max-width: 768px) {
  .radio-group {
    flex-direction: column;
  }
}

textarea.underline-input {
  min-height: 100px;
  resize: vertical;
  border: none;
  border: 1px solid #ddd;
  padding: 10px;
  font-family: "Montserrat", sans-serif;
}

.submit-button {
  background-color: #1d9d6f;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  margin: 0 auto;
  display: block;
}

.submit-button:hover {
  background-color: #9bd7b8;
}
.especie-button {
  background-color: #ffffff;
}
.especie-button:hover {
  background-color: #9bd7b8;
  border: solid;
  border-color: #1d9d6f;
}
.question-text {
  color: #666;
  margin-top: 1.5rem !important;
  font-size: 14px !important;
}
.underline-input::placeholder {
  color: #444;
  font-size: 0.9rem;
}
/* ====== Cobertura ====== */
.cobertura_d {
  background-color: #9bd7b8;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cobertura_d h3 {
  margin-bottom: 0;
}

/* ====== Box ====== */
.box {
  border-radius: 20px;
  padding: 50px;
  box-sizing: border-box;
  line-height: 1.6;
}
.box h1,
.box h2 {
  margin: 0;
  line-height: 1.2;
}
.box.dark {
  background-color: #1d9d6f;
  color: #fff;
}
.box.medium {
  background-color: #9bd7b8;
}
.box.light {
  background: #fff;
  color: #444;
}
.box.light h1,
.box.light h2 {
  color: #1d9d6f;
}
.box.shadow {
  box-shadow: -24px -2px 40px -1px rgba(191, 191, 191, 1);
}
.box p {
  font-size: 1.2rem;
}
/* ====== PRE FOOT ====== */

.prefoot {
  background-color: #1d9d6f;
  color: #fff;
  font-size: 16px;
}
.prefoot .container {
  flex-wrap: wrap;
  padding: 50px 20px;
}
.respaldo {
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 10px 25px;
  font-size: 30px;
  margin-bottom: 40px;
}
.respaldo img {
  margin: 0 10px;
}
.prefoot ul li {
  margin: 6px 0;
}
/* ====== BLOG ====== */
.publicacion {
  position: relative;
}
.titular {
  position: absolute;
  width: 90%;
  bottom: 20px;
  left: 5%;
  padding: 20px;
  box-sizing: border-box;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.37);
}
.titular h2 {
  color: #1d9d6f;
  font-size: 20px;
  margin: 0 0 30px 0;
}
.publicacion img {
  width: 100%;
}
/* ====== POST ====== */
.individual .hero {
  background-position: center;
  background-size: cover;
}
.individual .hero .box {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.37);
}
.individual .hero {
  padding: 150px 0;
}
.nota {
  flex-wrap: wrap;
  line-height: 1.5;
}
.nota h3 {
  color: #1d9d6f;
  font-size: 2.3rem;
  margin: 0;
}
#buscador button img {
  width: 35px;
  vertical-align: middle;
}
.individual .actions {
  margin: 30px 0;
}

/* ====== PIE DE PÁGINA ====== */
.footer {
  background-color: #1d9d6f;
  padding: 20px 0;
  color: #fff;
  text-align: center;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
}
.footer .redes {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.footer .redes a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 15px;
  font-size: 16px;
}

.footer .redes a:hover {
  text-decoration: underline;
}
#wap {
  position: fixed;
  right: 15px;
  bottom: 15px;
}

/* Errores en formulario de contacto */
.error-message {
  color: #ff3333;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

.error {
  border-bottom: 1px solid #ff3333 !important;
}

.spinner-backdrop {
  position: fixed; /* Fija el elemento para que cubra toda la pantalla */
  top: 0;
  left: 0;
  width: 100%; /* Ocupa todo el ancho de la pantalla */
  height: 100%; /* Ocupa todo el alto de la pantalla */
  background-color: rgba(0, 0, 0, 0.66); /* Fondo con opacidad */
  z-index: 9999; /* Asegúrate de que esté por encima de otros elementos */
  display: flex; /* Usar flex para centrar el contenido */
  justify-content: center; /* Centrar horizontalmente */
  align-items: center; /* Centrar verticalmente */
}

/*
Parsley Styles
 */
.parsley-error {
  border-color: #f6504d !important;
}
.parsley-errors-list {
  display: none;
  margin: 5px 0 0 0;
  padding: 0;
}
.parsley-errors-list.filled {
  display: block;
}
.parsley-errors-list > li {
  font-size: 12px;
  list-style: none;
  color: #f6504d;
}

/* ====== NO ENCONTRADA ====== */
.no-encontrada .hero {
  background-image: url("../imagenes/cobertura/imagen_cobertura_desktop_1-100.jpg");
  background-size: cover;
  min-height: calc(100vh - 200px);
  padding: 20px 0;
}

.no-encontrada .form-container h1 {
  font-size: 28px;
}

.no-encontrada .form-container .form-padding {
  padding: 1rem 0;
}

.no-encontrada .form-container .form-group {
  position: relative;
}

.no-encontrada .form-container .form-group input {
  width: 100%;
  padding-right: 40px; /* Space for the icon */
  border: 1px solid #ccc; /* Customize the border color */
  border-radius: 5px;
  font-size: 16px;
  padding: 10px;
}

.no-encontrada .form-container .toggle-password {
  position: absolute;
  right: 12px;
  top: 70%;
  transform: translateY(-50%);
  cursor: pointer;
}

.no-encontrada #back-button {
  display: none;
}

.no-encontrada button a {
  color: #fff;
}

@media (max-width: 768px) {
  .no-encontrada .box.light {
    margin: 1rem;
    padding: 2rem;
  }

  .no-encontrada .form-container .responsive-heading {
    font-size: 24px !important;
  }
}
/* ====== MENSAJE SUCCESS ====== */
#responseMessage_ok.response-success {
  color: black;
  padding: 10px;
  border-radius: 5px;
  text-align: left;
  font-size: 1rem;
  word-spacing: normal;  
  letter-spacing: normal;
  line-height: 1.4;  
}

#responseMessage_error.response-error {
  color: black;
  padding: 10px;
  border-radius: 5px;
  text-align: left;
  font-size: 1rem;
  word-spacing: normal;  
  letter-spacing: normal;
  line-height: 1.4;  
}

.grecaptcha-badge { 
  visibility: hidden !important;
}