/* ----------------- BASE ----------------- */
body {
  font-family: 'Montserrat', sans-serif !important;
  color: #707070;
}

.uppercase {
  text-transform: uppercase;
}

.tracking {
  letter-spacing: 3px;
}

p {
  color: #707070;
}

/*TOP*/
.top-bar {
  background-color: #4f9a84;
  /* verde exacto */
  color: #fff;
  font-size: 14px;
}

.top-bar i {
  font-size: 14px;
}

.top-left {
  padding-left: 20px;
}

.separator {
  opacity: 0.6;
}

.top-right {
  height: 100%;
}

.social {
  color: #fff;
  font-size: 16px;
  margin: 0 8px;
  text-decoration: none;
}

.social:hover {
  opacity: 0.8;
}


.top-right .btn-reserva {
  background-color: #DD7649;
  /* naranja exacto */
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  height: 100%;
  display: flex;
  align-items: center;
}

.btn-reserva:hover {
  background-color: #d16f46;
  color: #fff;
}


/*index*/

.services-module {
  background: #ffffff;
}

.service-card {
  background: #fff;
  padding: 5px 15px;
  text-align: left;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
  border-radius: 4px;
  position: relative;
}

.service-icon {
  position: absolute;
  top: -5px;
  right: 25px;
  color: #4f9a84;
  /* verde exacto */
  font-size: 48px;
}

.service-card h5 {
  font-weight: 600;
  color: #6b6b6b;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-card p {
  color: #4f9a84;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}


/* CONTENEDOR */
.welcome-module {
  background: #ffffff;
}

/* TITULOS */
.welcome-subtitle {
  letter-spacing: 4px;
  font-weight: 500;
  font-size: 30pt;
  color: #7a7a7a;
  margin-bottom: 0px;
}

.welcome-title {
  font-size: 4rem;
  font-weight: 400;
  color: #4f9a84;
  line-height: 1.1;
  position: relative;
  margin-bottom: 40px;
}

.welcome-title span {
  display: block;
}

.welcome-title .line {
  display: inline-block;
  width: 50px;
  height: 4px;
  background: #4f9a84;
  margin-right: 10px;
  vertical-align: middle;
}

/* TEXTOS */
.welcome-text {
  margin-top: 20px;
  color: #6b6b6b;
  line-height: 1.6;
  font-size: 1.2rem;
  text-align: justify;
}

.welcome-highlight {
  margin-top: 20px;
  font-size: 1.8rem;
  color: #4f9a84;
  font-weight: 500;
}

/* IMAGEN DERECHA */
.main-image {
  width: 100%;
  height: auto;
}

/* CHAT */
.chat-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #4f9a84;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-btn:hover {
  background: #3f7f6b;
  color: #fff;
}

/* ICONOS */
.icons-row i {
  font-size: 32px;
  color: #4f9a84;
  margin-bottom: 8px;
}

.icons-row p {
  font-size: 12px;
  letter-spacing: 1px;
  margin: 0;
  color: #4f9a84;
}


/* TÍTULO PRINCIPAL */
.services-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.services-title h2 {
  font-weight: 700;
  letter-spacing: 3px;
  color: #e07b4f;
  margin: 0;
}

/* ÍCONO SOL */
.sun {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #e07b4f;
  position: relative;
}

.sun::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 16px;
  background: #e07b4f;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow:
    12px 6px #e07b4f,
    18px 18px #e07b4f,
    6px 12px #e07b4f,
    -12px 6px #e07b4f,
    -18px 18px #e07b4f,
    -6px 12px #e07b4f;
}

/* TEXTO */
.services-description {
  max-width: 90%;
  margin: 20px auto 0;
  color: #6b6b6b;
  font-size: 1.4rem;
}

/* CATEGORÍAS */
.category-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 100px;
  margin-bottom: 0px;
}

.category-title h4 {
  margin: 0;
  letter-spacing: 2px;
  color: #6b6b6b;
  font-weight: 600;
}

.category-title h2 {
  margin: 0;
  letter-spacing: 2px;
  color: #6b6b6b;
  font-weight: 500;
  /* opcional */
}

.orange-line {
  width: 90%;
  text-align: center;
  height: 4px;
  margin: 5px 15px 10px 15px;
  background-color: #e07b4f;

}

.green-line {
  width: 90%;
  text-align: center;
  height: 4px;
  margin: 5px 15px 10px 15px;
  background-color: #4F9A84;

}

.sun.small {
  width: 24px;
  height: 24px;
  border-width: 2px;
}

/* IMÁGENES */
.service-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* cuadrado perfecto */
  object-fit: cover;
  /* recorta sin deformar */
  border-radius: 5px;
  display: block;
  height: 380px !important;
}

/* BOTÓN */
.service-category .btn-service {
  background: #e07b4f;
  color: #fff;
  padding: 10px 26px;
  border-radius: 12px;
  border: 4px solid #fff;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  top: -25px;
  font-size: 15pt;
}

.service-category .btn-service:hover {
  background: #d26f45;
  color: #fff;
}

/*testimonios*/
.testimonios {
  background: #fff;
}

.testimonio-card {
  padding: 25px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #f0f0f0;
}

.stars {
  color: #f5b301;
  font-size: 1.2rem;
}

.google-icon {
  width: 20px;
}

.nav-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: transparent;
  font-size: 2rem;
  color: #b5b5b5;
}

.left-arrow {
  left: -40px;
}

.right-arrow {
  right: -40px;
}

.nav-arrow:hover {
  color: #666;
}


/* ----------------- HEADER ----------------- */
header {
  width: 100%;
  z-index: 10;
  color: #fff;
}

header nav a {
  color: #fff;
  margin: 0 15px;
  font-size: .85rem;
}

/* ----------------- HERO ----------------- */
.hero {
  height: 100vh;
  background: url("img/hero.jpg") center/cover no-repeat;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 5px;
}

.hero .btn {
  border-radius: 40px;
  padding: 12px 34px;
  font-weight: 600;
}

/* ----------------- SECCIONES ----------------- */
.section {
  padding: 90px 0;
}

.section-title {
  font-weight: 700;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 30px;
}

/* ----------------- SERVICIOS ----------------- */
.service {
  text-align: center;
  font-size: .9rem;
}

.service img {
  height: 70px;
  margin-bottom: 15px;
}

/* ----------------- PROGRAMAS ----------------- */
.program-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.program-text {
  font-size: .95rem;
  line-height: 1.6;
}

/* ----------------- FRASE GRANDE ----------------- */
.big-phrase {
  background: #f3f3f3;
  padding: 80px 20px;
  text-align: center;
}

.big-phrase h2 {
  font-weight: 700;
  letter-spacing: 4px;
}

/* ----------------- EXPERIENCIAS ----------------- */
.experiences {
  font-size: .9rem;
  line-height: 1.8;
}

/* ----------------- TESTIMONIOS ----------------- */
.contact-hero {
  background-image: url('/images/reservas.png');
  background-size: cover;
  background-position: center;
  height: 450px;
  position: relative;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 0;
  pointer-events: none;
}

/* Botones */
.contact-hero .btn-reserva {
  background-color: #e6a23c;
  color: #fff;
  font-weight: 500;
  z-index: 999 !important;
}

.contact-hero .btn-reserva:hover {
  background-color: #d28f2f;
  color: #fff;
}

.contact-hero .btn-contacto {
  background-color: #e07b4f;
  color: #fff;
  font-weight: 500;
}

.contact-hero .btn-contacto:hover {
  background-color: #cc6a40;
  color: #fff;
}

/* ----------------- FOOTER ----------------- */
.footer-custom {
  background-color: #ffffff;
  border-top: 10px solid #4f9b8a;
  color: #4f9b8a;
  font-family: 'Montserrat', sans-serif;
}

.footer-logo {
  max-width: 220px;
}

.footer-text {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.5;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-menu li {
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-menu a {
  text-decoration: none;
  color: #4f9b8a;
  transition: opacity 0.3s ease;
}

.footer-menu a:hover {
  opacity: 0.7;
}

.footer-contact {
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-contact i {
  color: #4f9b8a;
}


.footer-legal {
  background-color: #4e9a87;
  /* Verde similar al diseño */
  padding: 18px 0;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-link:hover {
  text-decoration: underline;
  color: #ffffff;
}

.social-icon {
  color: #ffffff;
  font-size: 1.6rem;
  margin-left: 20px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.15);
  opacity: 0.85;
}


#back_to_top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.6);
  color: #000;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

#back_to_top:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
}


/*adultomayor*/

.adultomayor {
  position: relative;
  min-height: 100vh;
  background-image: url('/images/bg-adultomayor.png');
  background-size: cover;
  background-position: center;
}

.adultomayor .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.adultomayor .container {
  position: relative;
  z-index: 2;
}

.adultomayor .hero-logo img {
  max-width: 180px;
}

.adultomayor .hero-subtitle {
  letter-spacing: 4px;
  font-size: 1rem;
}

.adultomayor .hero-title {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.adultomayor .hero-description {
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* BOTONES */
.btn-orange {
  background-color: #e67e4f !important;
  color: #fff !important;
  padding: 12px 30px !important;
  border-radius: 8px !important;
}

.btn-orange:hover {
  background-color: #d86d3e;
  color: #fff;
}

.btn-orange-light {
  background-color: #e39d38 !important;
  color: #fff !important;
  padding: 12px 30px !important;
  border-radius: 8px !important;
}

.btn-orange-light:hover {
  background-color: #e39d38;
  color: #fff;
}

.btn-orange-outline {
  background-color: transparent !important;
  color: #e67e4f !important;
  padding: 12px 30px !important;
  border-radius: 8px !important;
  border: 2px solid #e67e4f !important;
  font-weight: 600;
  transition: all .3s ease;
}

.btn-orange-outline:hover {
  background-color: #e67e4f !important;
  color: #fff !important;
}



.btn-green {
  background-color: #4f9e8b !important;
  color: #fff !important;
  padding: 12px 30px !important;
  border-radius: 8px !important;
}

.btn-green:hover {
  background-color: #3f8a78 !important;
  color: #fff !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .adultomayor .hero-title {
    font-size: 2.2rem;
  }

  .adultomayor .hero-logo img {
    max-width: 140px;
  }
}



/*empresa*/
.hero-empresas {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

.hero-empresas video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-empresas::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 2;
}

.hero-empresas .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-empresas h1 {
  font-size: 3.5rem;
  letter-spacing: .2rem;
  font-weight: 300;
}

.hero-empresas h2 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: .15rem;
}

.hero-empresas .divider {
  width: 120px;
  height: 2px;
  background: #fff;
  margin: 1rem auto;
}

.hero-empresas p {
  font-size: 1.1rem;
  letter-spacing: .1rem;
}

.hero-empresas .btn-reserva {
  background: #e07a4f;
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-empresas .btn-reserva:hover {
  background: #cf6c44;
  color: #fff;
}

/* Logo */
.hero-empresas .hero-logo {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 4;
  text-align: right;
  line-height: 1.1;
}

.hero-empresas .hero-logo .marca {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .15rem;
}

.hero-empresas .hero-logo small {
  font-size: .7rem;
  letter-spacing: .1rem;
}

.text-warning {
  color: #E39D38 !important;
}

.text-warning2 {
  color: #DD7749 !important;
}

.text-success {
  color: #4B9882 !important;
}

.btn-success {
  background: #4B9882 !important;
}

.btn-warning {
  background: #E39D38 !important;
}

.text-justify {
  text-align: justify !important;
}

/*hero inicio*/

.home {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

/* VIDEO */
.home-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 650px;
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY */
.home-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .20);
  z-index: 2;
}

/* CENTRO */
.home-center {
  position: absolute;
  margin: auto;
  width: 100%;
  text-align: center;
  z-index: 999;
  top: 180px;
  letter-spacing: 5px;
}

.home-center h1 {
  font-size: 50pt;
  font-weight: 400;
}

.home-center h2 {
  font-size: 40pt;
  font-weight: 400;
}

.home-right {
  position: absolute;
  top: 20px;
  z-index: 999;
  right: 20px;
}

.home .home-logo {
  max-width: 480px;
  width: 80%;
}

/* BOTÓN RESERVA */
.home .btn-reserva {
  position: absolute;
  bottom: 40px;
  left: 70px;

  background-color: #e07b4f;
  /* color exacto */
  color: #ffffff;

  padding: 14px 50px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  border-radius: 12px;
  border: 6px solid rgba(255, 255, 255, 0.5);

  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);

  text-decoration: none;
  z-index: 4;

  transition: all .3s ease;
}

.home .btn-reserva:hover {

  background-color: #fff;
  /* color exacto */
  color: #e07b4f;
  border: 6px solid rgba(224, 123, 79, 0.5);

  transition: all .3s ease;
}


.home .btn-catalog {
  position: absolute;
  bottom: 40px;
  left: 360px;

  background-color: #4F9E8B;
  color: #ffffff;

  padding: 14px 50px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  border-radius: 12px;
  border: 6px solid rgba(255, 255, 255, 0.5);

  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);

  text-decoration: none;
  z-index: 4;

  transition: all .3s ease;
}

.home .btn-catalog:hover {

  background-color: #fff;
  /* color exacto */
  color: #4F9E8B;
  border: 6px solid rgba(79, 158, 139, 0.5);

  transition: all .3s ease;
}

/*preguntas vmovil*/
@media (max-width: 767px) {
  .contact-hero {
    min-height: 65vh;
  }

  .contact-hero h2 {
    line-height: 1.2;
  }

  .contact-hero p {
    opacity: 0.9;
  }

  .contact-hero .row {
    position: static;
  }


}

@media (max-width: 767px) {
  .titulo-imagen {
    width: 100% !important;
    height: auto !important;
  }

  .home .btn-catalog {
    bottom: 10px !important;
    left: 76px !important;
  }

  .home .btn-reserva {
    bottom: 80px !important;
    left: 70px !important;
  }

  .home-center h1 {
    font-size: 30pt !important;
  }

  .home-center h2{
    font-size:20pt !important;
  }
}



.actividades .img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.actividades .box {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.actividades .box h3 {
  color: #e07a4f;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  
  display: inline-block; /* clave para que mida solo el texto */
}

.actividades .box h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #E67E4F; /* azul Bootstrap */
  border-radius: 2px;
}



.actividades .small-link {
  color: #e07a4f;
  font-size: 13pt;
  font-weight: 500;
}