.home-body__error{
  margin-top: 160px;
}

/***Sección Ayuda***/
.servicios {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.servicios__titulo-seccion {
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-weight: normal;
  line-height: 120%;
}

@media (max-width: 600px) {
  .servicios__titulo-seccion {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}


.resaltado {
  color: #ff4d4d;
  font-weight: normal;
  line-height: 120%;
}

.servicios__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Media query para pantallas pequeñas */
@media screen and (max-width: 500px) {
  .servicios__grid {
    grid-template-columns: 1fr;
  }
}
.servicios__grid >a{display: flex;}

.servicios__card {
  background-color: #ff4d4d;
  color: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.servicios__titulo {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0
}

.servicios__texto {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 30px 0;
}

/**HERO*/
.hero__banner {
  width: 100%;
  max-width: 100%;
}

.hero__img-wrap {
  position: relative;
  width: 100%;
}

.hero__img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}


/**Texto CUERPO bajada***/
.container-cuerpo {
  max-width: 940px;
  margin: 0 auto;
  padding: 40px 15px;

}
.container-cuerpo .CUERPO p {
  font-size: 22px;
  text-align: center;
  width: auto;
}
/* Media query para pantallas pequeñas */
@media screen and (max-width: 390px) {
  .container-cuerpo .CUERPO p {
    font-size: 16px;
    line-height: 140%;
  }
}

.container-cuerpo .CUERPO h2 {
  font-size: 28px;
  font-weight: normal;
  text-align: center;
  color: #4a4a4a;
  border: none;
  width: auto; 
}
/* Media query para pantallas pequeñas */
@media screen and (max-width: 390px) {
  .container-cuerpo .CUERPO h2 {
    font-size: 20px;
    line-height: 140%;
  }
}


/***Sección Video***/
.media {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin: 30px 0;
  }

.media iframe,.media object,.media embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  }

.video-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.video-section__titulo {
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-weight: normal;
  line-height: 120%;
}
@media (max-width: 600px) {
  .video-section__titulo {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}



.video-section__titulo .resaltado {
  color: #ff4d4d;
  font-weight: normal;
}


/**Sección Dropdown***/
.convenios-dropdown {
  max-width: 600px;
  margin: 30px auto;
  text-align: center;
  font-family: sans-serif;
}

.convenios-dropdown__button {
  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 16px 24px;
  font-size: 1.6rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.convenios-dropdown__button:hover {
  background-color: #e63c3c;
}

.convenios-dropdown__menu {
  display: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 15px auto;
  max-width: 360px;
}

.convenios-dropdown__grupo {
  margin-bottom: 20px;
}

.convenios-dropdown__titulo {
  font-size: 1.6rem;
  color: #ff4d4d;
  margin-bottom: 10px;
}

.convenios-dropdown__grupo ul {
  list-style: none;
  padding-left: 0;
}

.convenios-dropdown__grupo li {
  margin-bottom: 6px;
}

.convenios-dropdown__grupo a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.convenios-dropdown__grupo a:hover {
  color: #ff4d4d;
}
.convenios-dropdown__grupo a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 18px;
}

.convenios-dropdown__grupo a:hover {
  color: #ff4d4d;
}

.convenios-dropdown__grupo a img {
  width: 20px;
  height: 20px;
}

/************ Formulario de contacto ************/
.contacto {
  padding: 0 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

.contacto__col--form {
  max-width: 800px;
  width: 100%;
}

.contacto__form-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: #ff4d4d;
  font-weight: normal;
  line-height: 120%;
}
@media (max-width: 600px) {
  .contacto__form-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.contacto__form-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.contacto__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contacto__form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.contacto__form-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
}

.contacto__form-col--full {
  width: 100%;
  flex: 1 1 100%;
}

.contacto__input {
  padding: 14px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.contacto__button-wrapper {
  margin-top: 20px;
}

.contacto__button-wrapper--right {
  display: flex;
  justify-content: flex-end;
}

.contacto__button {
  background-color: #ff4d4d;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contacto__button:hover {
  background-color: #e63c3c;
}

/* ✅ Responsive: en pantallas menores a 640px, usa solo una columna */
@media (max-width: 640px) {
  .contacto__form-row {
    flex-direction: column;
  }

  .contacto__form-col {
    grid-template-columns: 1fr;
  }
}



/************ RESERVA HERO ************/
.reserva {
  position: relative;


}
@media (max-width: 640px) {
  .reserva {
   
  }
}

.reserva__overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to right, rgba(147, 39, 32, .5), rgba(221, 221, 221, .5));
  z-index: 0;
}

.reserva__content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  margin-left: 10.5vw;
  margin-top: 100px;
  
}

/* Media query */
@media (max-width: 600px) {
  .reserva__content {
    justify-content: flex-end;
    padding-bottom: 30px;
    margin-left: 20px;
    
  }
}


/* Media query */
@media (min-width: 600px) and (max-width: 1200px) {
  .reserva__content {
    justify-content: flex-end;
    padding-bottom: 40px;
    margin-left: 30px;
    
  }
}


.reserva__img-wrap img {
  width: 100%;
  display: block;
}
/* Media query */
@media (min-width: 600px) and (max-width: 1200px) {
  .reserva__img-wrap img {
    height: 600px;
    object-fit: cover;
    object-position: 0;
    
  }
}


.reserva__title {
  font-size: 56px;
  margin-bottom: 1rem;
  line-height: 100%;
  margin-top: 0;
  color: #fff;
}

@media (max-width: 768px) {
  .reserva__title  {
    font-size: 42px;
  }
}

.reserva__description {
  font-size: 24px;
  line-height: 120%;
  margin-bottom: 1.5rem;
  color: #fff;
}

@media (max-width: 768px) {
  .reserva__description  {
    display: none;
    font-size: 16px;
  }
}


/************ MENSAJE ************/
.mensaje {
  background-color: #000000;
  color: #ffffff;
  padding: rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.mensaje__contenedor {
  max-width: 1000px;
  width: 100%;
}

.mensaje__texto {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  padding: 0 20px;
}




/************ BANNER ************/
.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(147, 39, 32, .5), rgba(221, 221, 221, .5));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.hero__content {
  max-width: 1100px;
  text-align: center;
  color: white;
  padding: 2rem 0;
}

.hero__epigrafe {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

.hero__title {
  font-size: 48px;
  margin: 0 0 1rem;
}

@media (max-width: 1040px) {
  .hero__title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 28px;
  }
}

.hero__title--dest {
  font-size: 48px;
  margin-bottom: 1rem;
  color: #FA4238;
  background: white;
  padding: 5px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .hero__title--dest {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero__title--dest {
    font-size: 28px;
  }
}

.hero__description {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero__button {
  background-color: #FA4238;
  color: white;
  text-decoration: none;
  padding: 1rem 5rem;
  font-size: 18px;
  border-radius: 20px;
  transition: background 0.3s;
}

.hero__button:hover {
  background-color: #AE0000;
}

@media (max-width: 1024px) {

  .hero__title--dest {
    display: block;
    }

}

@media (max-width: 768px) {
  .hero {
    aspect-ratio: auto;
    height: auto;
  }

  .hero__title--dest {
    display: block;
    }

  .hero__description {
    font-size: 1rem;
  }
}

/************ ICONOS EN 4 COLUMNAS ************/
.card-ico {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.card-ico__contenedor {
  max-width: 1200px;
  margin: 0 auto;
}

.card-ico__titulo {
  font-size: 48px;
  margin-bottom: 3rem;
  color: #747474;
}


@media (max-width: 768px) {
  .card-ico__titulo {
    font-size: 28px;
  }
}

.card-ico__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.card-ico__card {
  background-color: transparent;
  padding: 1rem;
  width: 250px;
  text-align: center;
  box-sizing: border-box;
}

.card-ico__imagen {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.card-ico__card-titulo {
  font-size: 24px;
  color: #747474;
  margin-bottom: 0.75rem;
}

.card-ico__bajada {
  font-size: 24px;
  line-height: 1.4;
  color: #747474;
}

@media (max-width: 768px) {
  .card-ico__bajada {
    font-size: 16px;
  }
}

.card-ico__bajada-small {
  font-size: 15px;
  line-height: 1.4;
  color: #747474;
}


.card-ico__boton-wrapper {
  text-align: center;
}

.card-ico__boton {
  background-color: #FA4238;
  color: white;
  text-decoration: none;
  padding: 1rem 5rem;
  font-size: 18px;
  border-radius: 20px;
  transition: background 0.3s;
}

.card-ico__boton:hover {
  background-color: #AE0000;
}

@media (max-width: 768px) {
  .card-ico__grid {
    flex-direction: column;
    align-items: center;
  }

  .card-ico__card {
    width: 100%;
    max-width: 300px;
  }
}


/************ RECONOCIMIENTOS ************/
.reconocimientos {
  background-color: #f1f1f1;
  padding: 3rem 1rem;
}

.reconocimientos__contenedor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 1024px) {

  .reconocimientos__contenedor {
    flex-direction: column;
    }

}

.reconocimientos__col {
  box-sizing: border-box;
}

.reconocimientos__col--texto {
  flex: 0 0 45;
}

.reconocimientos__col--imagen {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reconocimientos__titulo {
  font-size: 48px;
  color: #747474;
  margin: 0;
}

@media (max-width: 768px) {
  .reconocimientos__titulo {
    font-size: 28px;
  }
}

.reconocimientos__imagen {
  width: 230px;
  height: 75px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .reconocimientos__contenedor {
    flex-direction: column;
    text-align: center;
  }

  .reconocimientos__col--texto,
  .reconocimientos__col--imagen {
    flex: 0 0 100%;
  }

  .reconocimientos__imagen {
    margin-top: 1rem;
  }
}






/************ PREGUNTAS FRECUENTES ************/

.faq-int {
  margin: 0 auto;
  background-color: #fff;
  padding: 40px;
}

.faq-int__auxi {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    }
.faq-int__titulo {
  font-size: 2.8rem;
  font-weight: normal;
  color: #ff4d4d;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .faq-int__titulo {
    font-size: 28px;
  }
}

.faq__item {
  margin-bottom: 20px;
  border: none;


}
.faq__item .CUERPO p{text-align: left; line-height: 1.4;}
.faq__item .CUERPO ul{padding-left: 30px}
.faq__item .CUERPO ul li{text-align: left; line-height: 1.4; list-style: none; position: relative;}
.faq__item .CUERPO ul li:before{content:'•'; color: #ff4d4d; position: absolute; left: -20px; font-size: 24px; line-height: 0.7; top: 2px;}
.faq__item .CUERPO ul li + li{margin-top: 15px;}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px;
  text-align: left;
  font-weight: bold;
  color: #fff;
  background-color: #ff4d4d;
  border-radius: 20px;
}

.faq__question:hover {
  color: #fff;
  }

.faq__icon {
  font-weight: normal;
  font-size: 20px;
  transition: transform 0.8s ease;
  color: #676767;
  border: 1px solid #ffffff;
  border-radius: 50%;
  width: 38px;
  text-align: center;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 0;
}
.faq__icon:before{
  content: '';
  width: 18px;
  height: 18px;
  background-image: url('../imag/chevron-down-white.svg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  transition: .3s all ease;
}

.faq__answer {
  display: none;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 1s;
  padding: 0 15px;
  font-size: 14px;
  color: #333;
}

.faq__item--active .faq__answer {
  display: block;
  opacity: 1;
  transform: scaleY(1);
  padding: 0 15px;
  text-align: left;
  font-size: 16px;
}

.faq__item--active .faq__icon:before {
  transform: rotate(180deg);
}

.form__checkbox {
  display: block;
  margin-bottom: 35px;
  margin-top: 15px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: center;
  -moz-box-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: block-axis;
  -webkit-box-orient: vertical;
  -moz-box-orient: block-axis;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.form__checkbox .__validator-alert span {
  padding: 12px 0 0;
}
.form__checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.form__checkbox input:checked + label:before {
  border-color: #676767;
  background-color: #676767;
}
.form__checkbox input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 8px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form__checkbox label {
  position: relative;
  cursor: pointer;
  color: #666666;
  gap: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  -ms-flex-align: start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.form__checkbox label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid #676767;
  border-radius: 2px;
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  transition: 0.2s all ease;
  position: relative;
  bottom: 0;
}
.form__checkbox a {
  text-decoration: underline;
  display: inline-flex;
}
.form__checkbox-txt {
  line-height: 1.4;
  font-size: 14px;
}

/************ BLOQUE CONVENIOS ************/

.convenios{
  text-align: center;
}
.convenios__titulo {
  font-size: 2.8rem;
  font-weight: normal;
  color: #ff4d4d;
  margin-bottom: 3rem;
  text-align: center;
}

@media (max-width: 768px) {
  .convenios__titulo {
    font-size: 28px;
  }
}


@media (max-width: 768px) {
  .strip-block--convenios{
    align-items: center;
  }
  .container-block--convenios{
    max-width: 88%;
    overflow-x: auto;
    width: 100%;
    min-width: inherit;
    padding: 0 20px;
    gap: 15px;
  }
}

.form-msj{ 
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 40px 0;
}
.form-msj__icon{
  width: 100px;
}
.form-msj__title{
  font-size: 30px;
  text-align: center;
}
.form-msj__description{
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin-top: 0;
}