@import url("reset.css");

@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600,700&display=swap");

/* ************COMMON************ */

.logo {
  font-weight: 700;
  font-size: 2.25rem;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #303a4d;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* BlissFit Dark Background - Services Page Only */
body.page-services,
body.page-about,
body.page-contact {
  background-color: #000000;
  color: #ffffff;
}

/* BlissFit Dark Theme - Servicios */
body.page-services .page__services,
body.page-services .page__main.main_services,
body.page-services .page__outro.outro_services {
  background-color: #000000;
  color: #ffffff;
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
}

.title {
  font-size: 3.5rem;
  font-weight: 600;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* ************HEADER************ */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}

/* BlissFit Dark Header - Services Page */
body.page-services .header {
  background: #000000;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.75rem;
  flex-wrap: wrap;
  max-width: 74.624rem;
}

.header__logo {
  position: relative;
  z-index: 2;
}

.header__navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu__link {
  font-weight: 600;
  position: relative;
  color: #303a4d;
}

/* BlissFit Dark Theme Links - Services Page */
body.page-services .menu__link {
  color: #ffffff;
}

body.page-services .header__logo {
  color: #ffffff;
}

body.page-services .icon-menu span,
body.page-services .icon-menu::before,
body.page-services .icon-menu::after {
  background-color: #ffffff;
}

.actions-header {
  display: flex;
  align-items: center;
  gap: 0.624rem;
}

.icon-menu {
  display: none;
}

.actions-header__button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid #303a4d;
  border-radius: 30px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}

/* ****************PAGES**************** */
.page__main {
  padding-bottom: 160px;
}

/* ============================================
   BLISSFIT - NUEVA ESTRUCTURA DE SERVICIOS
   ============================================ */

/* Hero Video de Portada */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 676px;
  overflow: hidden;
}

.hero-video__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: #000;
}

.hero-video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* Logo dentro del video */
.hero-video .logo-animated {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

/* Barra de Navegación (debajo del video) */
.main-nav {
  position: relative;
  width: 100%;
  background-color: #000000;
  z-index: 100;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Ocultar header antiguo en páginas con nueva estructura */
body.page-services .header,
body.page-about .header,
body.page-contact .header {
  display: none;
}

.main-nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.main-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav__link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav__link:hover,
.main-nav__link.active {
  color: #228b22;
}

.main-nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #228b22;
  transition: width 0.3s ease;
}

.main-nav__link:hover::after,
.main-nav__link.active::after {
  width: 100%;
}

/* Logo Animado - Cuando se mueve fuera del video */
.logo-animated--fixed {
  position: fixed !important;
  top: 1.5rem !important;
  left: 2rem !important;
  transform: translate(0, 0) !important;
  z-index: 9999 !important;
  opacity: 1;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo-animated__img {
  max-width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Contenido Principal */
.page-content {
  background-color: #000000;
  color: #ffffff;
  min-height: 100vh;
}

/* Video Destacado (mobile-first) */
.featured-video {
  padding: 2rem 1rem;
  background-color: #000000;
}
.featured-video__container {
  max-width: 1200px;
  margin: 0 auto;
}
.featured-video__frame {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(46, 213, 115, 0.15), 0 12px 40px rgba(0, 0, 0, 0.5);
  background:
    radial-gradient(circle at 10% 10%, rgba(46, 213, 115, 0.08), transparent 35%),
    radial-gradient(circle at 90% 20%, rgba(34, 139, 34, 0.08), transparent 40%),
    rgba(0, 0, 0, 0.9);
}
.featured-video__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: #0a0a0a;
}
@media (min-width: 768px) {
  .featured-video {
    padding: 3rem 2rem;
  }
  .featured-video__frame {
    height: 72vh;
    border-radius: 20px;
  }
}
@media (min-width: 1200px) {
  .featured-video__frame {
    height: 78vh;
  }
}

/* Sección Coach en Acción */
.owner-training {
  padding: 80px 1rem;
  background-color: #000000;
}

.owner-training__container {
  max-width: 1400px;
  margin: 0 auto;
}

.owner-training__title {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.owner-training__title.welcome-title {
  display: block;
}

.owner-training__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.owner-training__item {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #0a0a0a;
}

.owner-training__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(46, 213, 115, 0.2), 0 8px 24px rgba(0, 0, 0, 0.5);
}

.owner-training__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: #0a0a0a;
}
  transition: transform 0.6s ease;
}

.owner-training__item:hover .owner-training__image {
  transform: scale(1.05);
}

@media (min-width: 640px) {
  .owner-training__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .owner-training {
    padding: 100px 1.5rem;
  }
}

@media (min-width: 1024px) {
  .owner-training__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .owner-training {
    padding: 120px 2rem;
  }
  
  .owner-training__item {
    border-radius: 16px;
  }
}

/* Sección de Profesores */
.teachers-section {
  padding: 80px 1rem;
  background-color: #000000;
  position: relative;
}

.teachers-section__container {
  max-width: 1400px;
  margin: 0 auto;
}

.teachers-section__title {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.teachers-section__title.welcome-title {
  display: block;
}

.teachers-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.teacher-card {
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.08), rgba(0, 0, 0, 0.6));
  border: 1px solid rgba(46, 213, 115, 0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  position: relative;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.teacher-card:hover {
  transform: translateY(-8px);
  border-color: rgba(46, 213, 115, 0.6);
  box-shadow: 0 16px 40px rgba(46, 213, 115, 0.3), 0 8px 24px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.15), rgba(0, 0, 0, 0.75));
}

.teacher-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0a0a;
  border-radius: 16px 16px 0 0;
  isolation: isolate;
}

.teacher-card__image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(46, 213, 115, 0.5) 25%, transparent 50%, rgba(34, 139, 34, 0.5) 75%, transparent 100%);
  background-size: 200% 200%;
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  animation: rayos-verdes 3s ease-in-out infinite;
  pointer-events: none;
}

.teacher-card:hover .teacher-card__image-wrapper::before {
  opacity: 1;
}

.teacher-card__image-wrapper::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(46, 213, 115, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
  animation: brillo-rotacion 4s linear infinite;
}

.teacher-card:hover .teacher-card__image-wrapper::after {
  opacity: 1;
}

@keyframes rayos-verdes {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes brillo-rotacion {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.teacher-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.teacher-card:hover .teacher-card__image {
  transform: scale(1.08);
}

.teacher-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.teacher-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.teacher-card__role {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2ed573;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.teacher-card__description {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  flex-grow: 1;
}

.teacher-card__specialty {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(46, 213, 115, 0.2);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

@media (min-width: 640px) {
  .teachers-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .teachers-section {
    padding: 100px 1.5rem;
  }
  
  .teacher-card__content {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .teachers-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .teachers-section {
    padding: 120px 2rem;
  }
  
  .teacher-card__name {
    font-size: 1.75rem;
  }
  
  .teacher-card__description {
    font-size: 1.1rem;
  }
  
  .teacher-card__role {
    font-size: 1rem;
  }
}

/* Textos Motivacionales */
.motivational-text {
  padding: 120px 2rem;
  background-color: #000000;
}

.motivational-text__container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.motivational-text__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
}

.motivational-text__paragraph {
  font-size: 1.25rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin: 0 auto;
}

/* Primer texto motivacional (más grande y centrado) */
.motivational-text:first-of-type .motivational-text__paragraph {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  max-width: 1000px;
}

/* Segundo texto motivacional (con título y pilares) */
.motivational-text:nth-of-type(2) .motivational-text__paragraph {
  text-align: left;
  margin-bottom: 0;
}

.text-full {
  display: inline;
}

.read-more-btn {
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.2), rgba(34, 139, 34, 0.2));
  border: 1px solid rgba(46, 213, 115, 0.5);
  color: #2ed573;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: "Inter", sans-serif;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.3), rgba(34, 139, 34, 0.3));
  border-color: #2ed573;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 213, 115, 0.3);
}

.read-more-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(46, 213, 115, 0.3);
}

.read-less-text,
.read-more-text {
  display: inline-block;
}

/* Carrusel de Servicios */
.services-carousel {
  padding: 0;
  background-color: #000000;
  position: relative;
  margin: 0;
}

/* Carrusel Pantalla Completa */
.services-carousel--fullscreen {
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.services-carousel--fullscreen .services-carousel__container {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.services-carousel--fullscreen .services-carousel__wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  position: relative;
}

.services-carousel--fullscreen .services-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-carousel--fullscreen .services-carousel__slide {
  min-width: 100%;
  width: 100%;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
}

.services-carousel--fullscreen .services-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}

.services-carousel__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.services-carousel__wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.services-carousel__track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-carousel__slide {
  min-width: 100%;
  flex-shrink: 0;
}

.services-carousel__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.services-carousel__arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.services-carousel__arrow--prev {
  left: 2rem;
}

.services-carousel__arrow--next {
  right: 2rem;
}

.services-carousel__arrow:hover {
  background: rgba(34, 139, 34, 0.5);
  border-color: #228b22;
  transform: translateY(-50%) scale(1.1);
}

.services-carousel--fullscreen .services-carousel__arrow {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.services-carousel--fullscreen .services-carousel__arrow svg {
  width: 32px;
  height: 32px;
}

.services-carousel__arrow svg {
  width: 24px;
  height: 24px;
}

.services-carousel__indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.services-carousel__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-carousel__indicator.active {
  background: #228b22;
  transform: scale(1.2);
}

/* Carrusel en modo fade */
.services-carousel--fade .services-carousel__wrapper {
  position: relative;
  height: 600px;
}

.services-carousel--fade .services-carousel__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.services-carousel--fade .services-carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.services-carousel--fade .services-carousel__slide.active {
  opacity: 1;
  pointer-events: auto;
}

.services-carousel--fade .services-carousel__image {
  height: 100%;
}

.services-carousel--fullscreen.services-carousel--fade .services-carousel__wrapper,
.services-carousel--fullscreen.services-carousel--fade .services-carousel__slide,
.services-carousel--fullscreen.services-carousel--fade .services-carousel__image {
  height: 100%;
}

/* Videos Lado a Lado */
.videos-section {
  padding: 120px 2rem;
  background-color: #000000;
}

.videos-section__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.videos-section__video {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 0;
  overflow: hidden;
}

.videos-section__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav__list {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .main-nav__link {
    font-size: 0.9rem;
  }

  .logo-animated__img {
    max-width: 120px;
  }

  .logo-animated--fixed {
    left: 1rem;
    top: 70px;
  }

  .main-nav {
    padding: 1.5rem 0;
  }

  .membership-section__grid {
    grid-template-columns: 1fr;
  }

  .motivational-text__title {
    font-size: 2.5rem;
  }

  .services-carousel--fullscreen {
    height: 100vh;
  }

  .services-carousel--fullscreen .services-carousel__arrow {
    width: 50px;
    height: 50px;
  }

  .services-carousel--fullscreen .services-carousel__arrow--prev {
    left: 1rem;
  }

  .services-carousel--fullscreen .services-carousel__arrow--next {
    right: 1rem;
  }

  .services-carousel__indicators {
    bottom: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .motivational-text__paragraph {
    font-size: 1.1rem;
  }

  .services-carousel__container {
    flex-direction: column;
  }

  .services-carousel__arrow {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .services-carousel__arrow--prev {
    left: 1rem;
  }

  .services-carousel__arrow--next {
    right: 1rem;
  }

  .services-carousel__image {
    height: 400px;
  }

  .videos-section__container {
    grid-template-columns: 1fr;
  }

  .videos-section__video {
    height: 400px;
  }
}

/* Sección de Membresías */
.membership-section {
  padding: 120px 2rem;
  background-color: #000000;
}

.membership-section__container {
  max-width: 1400px;
  margin: 0 auto;
}

.membership-section__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}

.membership-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.membership-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.membership-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 139, 34, 0.5);
  box-shadow: 0 10px 30px rgba(34, 139, 34, 0.2);
}

.membership-card--featured {
  border: 2px solid #228b22;
  background: rgba(34, 139, 34, 0.1);
}

@media (min-width: 993px) {
  .membership-card--featured {
    transform: scale(1.05);
  }
}

.membership-card--featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #228b22;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.membership-card__header {
  margin-bottom: 2rem;
  text-align: center;
}

.membership-card__name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.membership-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.membership-card__amount {
  font-size: 3rem;
  font-weight: 700;
  color: #228b22;
  line-height: 1;
}

.membership-card__period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.membership-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.membership-card__feature {
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-left: 1.5rem;
}

.membership-card__feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #228b22;
  font-weight: bold;
}

.membership-card__feature:last-child {
  border-bottom: none;
}

.membership-card__button {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 0;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.membership-card__button:hover {
  background: #228b22;
  border-color: #228b22;
  color: #ffffff;
  transform: scale(1.05);
}

.membership-card--featured .membership-card__button {
  background: #228b22;
  border-color: #228b22;
}

.membership-card--featured .membership-card__button:hover {
  background: #1a6b1a;
  border-color: #1a6b1a;
}

/* Responsive Membresías */
@media (max-width: 992px) {
  .membership-section__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .membership-card--featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .membership-section {
    padding: 80px 1rem;
  }

  .membership-section__title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .membership-card {
    padding: 2rem;
  }

  .membership-card__amount {
    font-size: 2.5rem;
  }
}

/* Sección de Imágenes About */
.about-image-section {
  padding: 80px 2rem;
  background-color: #000000;
}

.about-image-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-image-section__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

/* Videos Sección */
.videos-section {
  padding: 120px 2rem;
  background-color: #000000;
}

.videos-section__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.videos-section__video {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 0;
  overflow: hidden;
}

.videos-section__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Formulario de Contacto */
.contact-form {
  padding: 120px 2rem;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(46, 213, 115, 0.2), transparent 45%),
              radial-gradient(circle at bottom right, rgba(34, 139, 34, 0.2), transparent 40%);
  pointer-events: none;
}

.contact-form__container {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.contact-form__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.contact-form__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.75rem;
}

.contact-form__field span {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1rem 1.25rem;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4.5L8 10L14 4.5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 3rem;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__field select:focus {
  outline: none;
  border-color: rgba(46, 213, 115, 0.7);
  box-shadow: 0 0 0 3px rgba(46, 213, 115, 0.25);
  transform: translateY(-2px);
}

.contact-form__field--full {
  grid-column: span 2;
}

.contact-form__submit {
  align-self: center;
  border-radius: 50px;
  padding: 1.1rem 3.5rem;
  background: linear-gradient(135deg, #228b22 0%, #2ed573 100%);
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form__submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 45px rgba(34, 139, 34, 0.4);
}

.contact-form__success {
  display: none;
  margin: 0;
  color: #2ed573;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form__success.is-visible {
  display: block;
}

/* Sección Social */
.social-section {
  padding: 100px 2rem;
  background-color: #000000;
  text-align: center;
}

.social-section__container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.social-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.social-section__link {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2ed573;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.social-section__link:hover {
  color: #ffffff;
}

.social-section__icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  filter: drop-shadow(0 4px 10px rgba(46, 213, 115, 0.35));
  transition: transform 0.3s ease;
}

.social-section__link:hover .social-section__icon {
  transform: scale(1.1);
}

/* Sección Hero Contact */
.contact-hero-section {
  padding: 80px 2rem;
  background-color: #000000;
}

.contact-hero-section__container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-hero-section__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

/* Información de Contacto */
.contact-info {
  padding: 120px 2rem;
  background-color: #000000;
}

.contact-info__container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.contact-info__item {
  padding: 2rem;
}

.contact-info__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #228b22;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-info__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Mapa de Contacto */
.contact-map {
  padding: 0 2rem 120px;
  background-color: #000000;
}

.contact-map__container {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.contact-map__iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 16px;
  filter: grayscale(50%);
}

/* Responsive para About y Contact */
@media (max-width: 768px) {
  .about-image-section,
  .contact-hero-section {
    padding: 40px 1rem;
  }

  .contact-info__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    padding: 80px 1rem;
  }

  .contact-map {
    padding: 0 1rem 80px;
  }
}

/* Sección de Pilares */
.pillars-section {
  margin-top: 4rem;
  padding: 3rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(1200px 400px at 10% 0%, rgba(46, 213, 115, 0.08), transparent 60%),
    radial-gradient(900px 300px at 90% 0%, rgba(34, 139, 34, 0.08), transparent 65%),
    rgba(0, 0, 0, 0.6);
}

.pillars-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2.25rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  filter: drop-shadow(0 4px 14px rgba(34, 139, 34, 0.25));
}

.pillars-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pillar-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 1.5rem;
  text-align: center;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.pillar-item:hover {
  background: linear-gradient(180deg, rgba(34, 139, 34, 0.28), rgba(34, 139, 34, 0.16));
  border-color: rgba(34, 139, 34, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(34, 139, 34, 0.35);
}

/* Sección de Mapa */
.map-section {
  padding: 120px 2rem;
  background-color: #000000;
}

.map-section__container {
  max-width: 1400px;
  margin: 0 auto;
}

.map-section__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.map-section__map {
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.map-section__iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.map-section__iframe:hover {
  filter: grayscale(0%);
}

.map-section__address {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: 2rem;
}

/* Responsive Pilares y Mapa */
@media (max-width: 992px) {
  .pillars-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pillars-section {
    margin-top: 3rem;
    padding: 2rem 1rem;
  }

  .pillars-section__title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .pillars-section__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pillar-item {
    padding: 1.25rem;
    font-size: 1rem;
  }

  .map-section {
    padding: 80px 1rem;
  }

  .map-section__title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .map-section__iframe {
    height: 400px;
  }

  .map-section__address {
    font-size: 1.1rem;
  }
}

/* *****************HOME**************** */

.main {
  background: url("../img/home/background_placeholder.png") center / cover no-repeat;
  min-height: 100vh;
}

.main__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 19.188rem;
}

.main__caption {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.main__title {
  font-size: 5.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.main__text {
  margin-bottom: 3.5rem;
  max-width: 33.375rem;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
}

.outro_home {
  background: url("../img/home/hero_placeholder.jpg") center / cover no-repeat;
}

/* ************ABOUT**************** */

.main_about {
  background: url("../img/about/background_placeholder.png") center / cover no-repeat;
}

.about__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.about__image {
  position: relative;
  max-width: 552px;
  height: 614px;
}

.about__image img {
  border-radius: 16px;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title {
  margin-bottom: 1.5rem;
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
}

.about__text p:not(:last-child) {
  margin-bottom: 2.5rem;
}

.outro_about {
  background: url("../img/about/hero_placeholder.jpg") center / cover no-repeat;
}

/* Imagen en outro about */
.outro_about .outro__image {
  margin-bottom: 3rem;
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.outro_about .outro__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* **************SERVICES**************** */

.main_services {
  background: url("../img/services/background_placeholder.png") center / cover no-repeat;
}

.services {
  background-color: #e1e4eb;
}

.services__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.services__title {
  text-align: center;
  margin-bottom: 5rem;
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.item-services {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 100%;
}

.item-services__image {
  margin-bottom: 2rem;
  max-width: 360px;
  height: 421px;
}

.item-services__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.item-services__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.item-services__text {
  max-width: 21.5rem;
  line-height: 150%;
  margin-bottom: 2rem;
  flex-grow: 1;
  letter-spacing: 0.02em;
}

.item-services__button {
  background-color: inherit;
  border: 2px solid #303a4d;
  color: #303a4d;
}

.outro_services {
  background: url("../img/services/hero_placeholder.jpg") center / cover no-repeat;
}

/* ************TESTIMONIAL**************** */

.testimonial__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.testiomonial__caption {
  margin-bottom: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial__title {
  margin-bottom: 4rem;
  font-size: 2rem;
  max-width: 40.75rem;
  line-height: 136%;
  font-weight: 500;
}

.item-testimonial__image {
  max-width: 64px;
  margin: 0 auto;
  margin-bottom: 1.063rem;
  height: 64px;
}

.item-testimonial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.item-testimonial__title {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.item-testimonial__caption {
  font-size: 0.938rem;
}

/* ****************OUTRO**************** */

.outro__container {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.outro__title {
  margin-bottom: 1.25rem;
}

.outro__text {
  max-width: 33.625rem;
  line-height: 150%;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.outro__button {
  padding: 1.25rem 3rem;
}

/* BlissFit Outro Section */
body.page-services .outro_services {
  background-color: #000000 !important;
  color: #ffffff;
  background-image: none !important;
}

body.page-services .outro_services .outro__title {
  color: #ffffff;
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

body.page-services .outro_services .outro__text {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

body.page-services .outro_services .outro__button {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 0;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

body.page-services .outro_services .outro__button:hover {
  background-color: rgba(34, 139, 34, 0.2);
  border-color: #228b22;
  color: #ffffff;
}

body.page-services .outro_services .outro__container {
  padding-top: 120px;
  padding-bottom: 120px;
}

/* ****************FOOTER**************** */

.footer {
  line-height: 150%;
}

.footer__container {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  max-width: 74.624rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer__policy {
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: start;
}

.footer__logo {
  justify-self: center;
}

.footer__copyright {
  font-weight: 600;
  letter-spacing: 0.02em;
  justify-self: end;
}

/* BlissFit Footer - Services Page */
body.page-services .footer,
body.page-about .footer,
body.page-contact .footer {
  background-color: #000000;
  color: #ffffff;
}

body.page-services .footer__policy,
body.page-services .footer__logo,
body.page-services .footer__copyright,
body.page-about .footer__policy,
body.page-about .footer__logo,
body.page-about .footer__copyright,
body.page-contact .footer__policy,
body.page-contact .footer__logo,
body.page-contact .footer__copyright {
  color: #ffffff;
}

body.page-services .footer__policy:hover,
body.page-services .footer__logo:hover,
body.page-about .footer__policy:hover,
body.page-about .footer__logo:hover,
body.page-contact .footer__policy:hover,
body.page-contact .footer__logo:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ****************ABOUT PAGE**************** */
.main__text_pages {
  max-width: 37.5rem;
}

.main__container_pages {
  padding-top: 300px;
}

.main_pages {
  min-height: 676px !important;
}

/* ****************SERVICES PAGE**************** */
.services-page__container {
  padding-top: 160px;
}

body.page-services .services-page__container {
  background-color: #000000;
  padding-top: 120px;
  padding-bottom: 80px;
}

body.page-services .services-page {
  background-color: #000000;
}

.services-page__item {
  margin-bottom: 132px;
}

body.page-services .services-page__item {
  margin-bottom: 0;
}

body.page-services .services-page__item:not(:last-child) {
  padding-bottom: 180px;
  margin-bottom: 180px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-page__column {
  display: flex;
  align-items: center;
  gap: 97px;
}

.services-page__title {
  margin-bottom: 24px;
}

body.page-services .services-page__title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 600;
}

body.page-services .services-page__text {
  margin-bottom: 56px;
  max-width: 480px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.services-page__text p:not(:last-child) {
  margin-bottom: 20px;
}

.services-page__img {
  max-width: 552px;
  height: 614px;
}

.services-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Videos en servicios */
.services-page__video {
  position: relative;
  overflow: hidden;
  max-width: 552px;
  height: 614px;
}

.services-page__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.services-page__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* BlissFit Button Styles */
body.page-services .services-page__button.button {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 0.875rem 2rem;
  border-radius: 0;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

body.page-services .services-page__button.button:hover {
  background-color: rgba(34, 139, 34, 0.2);
  border-color: #228b22;
  color: #ffffff;
}

/* ****************CONTACT PAGE****************/

.main_contact {
  background: url("../img/contact/background_placeholder.png") center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* Hero image en contact */
.main_contact .main__hero-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.main_contact .main__hero-image {
  width: 100%;
  height: 100%;
  display: block;
}

.main_contact .main__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main_contact .main__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.main_contact .main__container_pages {
  position: relative;
  z-index: 2;
}

.main_contact .main__title {
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.main_contact .main__text {
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.contact__container {
  display: flex;
  justify-content: space-between;
  gap: 109px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.contact__title {
  margin-bottom: 48px;
  font-weight: 600;
  line-height: 110%;
  font-size: 40px;
}

.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e4eb;
}

.connect-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.connect-contant__type {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 110%;
  text-transform: uppercase;
}

.connect-contact__label {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.contact__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__text {
  max-width: 545px;
  font-size: 18px;
  line-height: 150%;
}

.contact__text p:not(:last-child) {
  margin-bottom: 15px;
}

iframe {
  width: 100%;
  max-width: 100%;
  height: 482px;
  filter: grayscale(100%);
}

/* **************REVIEWS PAGE**************** */
.reviews__container {
  padding-top: 160px;
  padding-bottom: 160px;
}

.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
}

.reviews__column {
  border: 1px solid #e1e4eb;
  border-radius: 8px;
}

.reviews__item {
  padding-top: 48px;
  padding-bottom: 56px;
  padding-right: 32px;
  padding-left: 32px;
}

.item-reviews {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-reviews__img {
  max-width: 46px;
  height: 36px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.item-reviews__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-reviews__text {
  margin-bottom: 40px;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 150%;
}

.item-reviews__author {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.item-reviews__geo {
  font-size: 14px;
  letter-spacing: 0.002em;
}

/* ******************PRICING PAGE******************** */
.pricing__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing__caption {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 4%;
}

.pricing__title {
  font-weight: 600;
  font-size: 72px;
  margin-bottom: 24px;
}

.pricing__text {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 88px;
}

.pricing__row {
  display: flex;
  align-items: start;
  gap: 24px;
}

.pricing__column {
  border: 2px solid #e1e4eb;
  border-radius: 8px;
}

.pricing__item {
  padding: 40px;
  padding-bottom: 48px;
}

.item-pricing__info {
  padding-bottom: 32px;
  border-bottom: 1px solid #e1e4eb;
  margin-bottom: 32px;
}

.item-pricing__label {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1%;
  margin-bottom: 16px;
}

.item-pricing__cost {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-pricing__list {
  margin-bottom: 64px;
}

.item-pricing__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-pricing__item::before {
  content: "";
  background: url("../img/pricing/check.svg") 0 0 no-repeat;
  width: 16px;
  height: 18px;
}

.item-pricing__item:not(:last-child) {
  margin-bottom: 12px;
}

.item-pricing__button {
  display: inline-block;
  font-size: 22px;
  letter-spacing: 2%;
  font-weight: 600;
  color: #fff;
  padding: 20px 82px;
  background-color: #303a4d;
  border-radius: 64px;
}

.team {
  background-color: #e1e4eb;
}

.team__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.team__title {
  text-align: center;
  margin-bottom: 96px;
  max-width: 483px;
}

.team__row {
  display: grid;
  column-gap: 24px;
  row-gap: 96px;
  grid-template-columns: repeat(3, 1fr);
}

.team__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-team__img {
  max-width: 360px;
  height: 363px;
  margin-bottom: 40px;
}

.item-team__img img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.item-team__name {
  max-width: 186px;
  font-size: 32px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 12px;
}

.item-team__role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  letter-spacing: 2%;
}

.item-team__role span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-team__role span::after {
  content: "";
  background: url("../img/team/icons/star.svg") 0 0 no-repeat;
  width: 12px;
  height: 12px;
}

.item-team__text {
  font-size: 16px;
  text-align: center;
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 328px;
  margin-bottom: 20px;
}

.item-team__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* *************FAQ PAGE************** */
.faqs__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.faqs__title {
  text-align: center;
  margin-bottom: 80px;
}

.spollers-faq__item {
  width: 100%;
}

.spollers-faq__item:not(:last-child) {
  margin-bottom: 24px;
}

.spollers-faq__button {
  display: inline-block;
  border: 2px solid #e1e4eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
}

.spollers-faq__button span {
  padding-left: 40px;
  padding-top: 32px;
  padding-bottom: 32px;
  font-weight: 600;
}

.spollers-faq__button img {
  padding-right: 34.5px;
}

.spollers-faq__text {
  max-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
}

.spollers-faq__item.active .spollers-faq__text {
  max-height: 1000px;
  max-height: calc(1000px + 16px);
}

.spollers-faq__item.active .spollers-faq__button {
  border-bottom: none;
  border-radius: 8px 8px 0px 0px;
}

.spollers-faq__item.active .spollers-faq__button span {
  padding-bottom: 32px;
}

.spollers-faq__item.active .spollers-faq__button img {
  transform: translate(-34px, 0px) rotate(180deg);
}

.spollers-faq__inner {
  padding-top: 20px;
  padding-left: 40px;
  border: 2px solid #e1e4eb;
  border-radius: 0px 0px 8px 8px;
  line-height: 150%;
  padding-bottom: 20px;
  border-top: none;
  padding-right: 100px;
}

/* ****************TEAM PAGE**************** */
.director__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  gap: 96px;
}

.director__title {
  margin-bottom: 16px;
}

.director__role {
  font-size: 22px;
  letter-spacing: 2%;
  margin-bottom: 40px;
}

.director__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 480px;
}

.director__text p:not(:last-child) {
  margin-bottom: 20px;
}

.director__img {
  max-width: 552px;
  height: 614px;
}

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

/* ****************GALLERY**************** */
.gallery__container {
  padding-bottom: 140px;
  padding-top: 140px;
}

.gallery__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  margin-bottom: 96px;
  justify-items: center;
}

.gallery__item {
  max-width: 360px;
  height: 407px;
}

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

.gallery__paggination {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 42px;
}

.gallery__paggination button:first-child {
  transform: translate(0px, 5px);
}

.gallery__paggination button:last-child {
  transform: rotate(-180deg) translate(0px, 5px);
}

.gallery_active {
  color: #fff;
  padding: 10px 15px;
  background-color: #303a4d;
  border-radius: 100px;
  display: inline-block;
}

/* ****************RESOURCES**************** */
.resources__container {
  padding-top: 140px;
  padding-bottom: 140px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 96px;
  justify-items: center;
}

.resources__img {
  max-width: 360px;
  height: 330px;
  margin-bottom: 32px;
}

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

.resources__title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 12px;
}

.resources__text {
  letter-spacing: 2%;
  line-height: 150%;
  max-width: 243px;
  margin-bottom: 32px;
}

.resources__button {
  background-color: #fff;
  color: #303a4d;
  font-weight: 600;
  letter-spacing: 2%;
  border: 2px solid #303a4d;
  border-radius: 64px;
}

/* ****************ADAPTIVE**************** */

@media (max-width: 992px) {
  .services__row {
    grid-template-columns: 1fr;
    gap: 6rem;
    justify-items: center;
  }

  .item-services {
    text-align: center;
    align-items: center;
  }

  .page__main {
    padding-bottom: 80px;
  }
}

@media (min-width: 47.999rem) {
  .menu__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 995px) {
  .item-pricing__button {
    font-size: 19px;
  }
}

@media (max-width: 62.6875rem) {
  .resources__container {
    padding-top: 70px;
    padding-bottom: 70px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__paggination {
    gap: 27px;
  }

  .gallery__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .director__container {
    flex-direction: column;
    padding-top: 70px;
    padding-bottom: 70px;
    gap: 10px;
    text-align: center;
  }

  .item-pricing {
    padding: 20px;
    padding-bottom: 30px;
  }

  .pricing__title {
    font-size: 39px;
  }

  .pricing__text {
    margin-bottom: 25px;
  }

  .item-pricing__button {
    padding: 16px 42px;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
  }

  .footer__policy,
  .footer__copyright {
    justify-self: center;
    text-align: center;
    margin: 0.5rem 0;
  }

  .footer__logo {
    margin-bottom: 1rem;
  }

  .services-page__column {
    gap: 30px;
    font-size: 15px;
  }

  .services-page__title {
    font-size: 29px;
  }

  .reviews__row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 10px;
  }

  .reviews__item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    display: inline-block;
  }

  .item-reviews__text {
    font-size: 16px;
  }

  .item-reviews__author {
    font-size: 16px;
  }
}

@media (max-width: 61.936rem) {
  .footer__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 0.938rem;
  }

  .logo {
    font-size: 2rem;
  }
}

@media (max-width: 530px) {
  .reviews__row {
    grid-template-columns: 1fr;
  }

  .team__row {
    grid-template-columns: 1fr;
  }

  .gallery__row {
    grid-template-columns: 1fr;
  }

  .resources__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .videos-section__container {
    grid-template-columns: 1fr;
  }

  .videos-section__video {
    height: 400px;
  }

  .contact-form {
    padding: 80px 1rem;
  }

  .contact-form__container {
    padding: 2rem;
  }

  .contact-form__title {
    font-size: 2.25rem;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__field--full {
    grid-column: span 1;
  }
}

/* Servicios Preview */
.services-preview {
  padding: 120px 2rem;
  background-color: #000000;
}

.services-preview__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-preview__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.services-preview__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 3rem;
}

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.services-preview__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-preview__card--wide {
  grid-column: span 2;
}

.services-preview__image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.services-preview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.services-preview__caption {
  padding: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
}

.services-preview__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(34, 139, 34, 0.2);
}

.services-preview__card:hover .services-preview__image {
  transform: scale(1.08);
}

@media (max-width: 992px) {
  .services-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-preview__card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .services-preview {
    padding: 80px 1.5rem;
  }

  .services-preview__grid {
    grid-template-columns: 1fr;
  }

  .services-preview__card,
  .services-preview__card--wide {
    grid-column: span 1;
  }

  .services-preview__image-wrapper {
    height: 220px;
  }
}

/* Services Highlight (services.html) */
.services-highlight {
  padding: 120px 2rem;
  background-color: #000000;
}

.services-highlight__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-highlight__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.services-highlight__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.services-highlight__item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.25rem;
  border-radius: 18px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-highlight__item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-highlight__item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.services-highlight__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(34, 139, 34, 0.18);
}

@media (max-width: 768px) {
  .services-highlight {
    padding: 80px 1.5rem;
  }

  .services-highlight__title {
    font-size: 2.4rem;
  }

  .services-highlight__grid {
    grid-template-columns: 1fr;
  }
}

/* Social Section */
.social-section {
  padding: 100px 2rem;
  background-color: #000000;
  text-align: center;
}

.social-section__container {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.social-section__title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.social-section__link {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2ed573;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-section__link:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .social-section {
    padding: 80px 1.5rem;
  }

  .social-section__title {
    font-size: 2rem;
  }

  .social-section__link {
    font-size: 1.4rem;
  }
}

/* Services Visual Grid (services.html) */
.services-visual {
  padding: 40px 0 80px; /* mobile-first */
  background-color: #000000;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

.services-visual__container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
}

.services-visual__slider {
  position: relative;
  width: 100%;
  left: 0;
  right: 0;
  margin-left: 0;
  margin-right: 0;
  height: 70vh;          /* mobile-first */
  min-height: 420px;
  border-radius: 0;
  overflow: hidden;
  background: #0e0e0e;
}

.services-visual__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  filter: blur(6px);
  transition: opacity 2.2s ease-in-out, transform 7s ease-in-out, filter 2.2s ease-in-out; /* transición aún mayor */
  display: flex;
  flex-direction: column;
}

.services-visual__slide.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.services-visual__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: #0a0a0a;
}
  flex: 1;
}

.services-visual__caption {
  background: rgba(0, 0, 0, 0.75);
  padding: 1.25rem 1.75rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .services-visual {
    padding: 32px 0 64px;
  }

  .services-visual__slider {
    height: 68vh;
    min-height: 420px;
  }

  .services-visual__caption {
    display: none;
  }
}

@media (min-width: 992px) {
  .services-visual {
    padding: 60px 2rem 120px;
  }
  .services-visual__slider {
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    height: 80vh;
    min-height: 520px;
    border-radius: 16px;
  }
}

/* Título de bienvenida decorado */
.welcome-title {
  font-size: 2rem;
  line-height: 1.15;
  text-align: center;
  background: linear-gradient(120deg, #ffffff 0%, #2ed573 45%, #228b22 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 22px rgba(34, 139, 34, 0.35));
  letter-spacing: 0.04em;
  position: relative;
  display: inline-block;
}
.welcome-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 120px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, #2ed573, transparent);
  border-radius: 3px;
  box-shadow: 0 0 18px rgba(46, 213, 115, 0.4);
}
@media (min-width: 768px) {
  .welcome-title {
    font-size: 2.4rem;
    letter-spacing: 0.06em;
  }
  .welcome-title::after {
    width: 160px;
    height: 4px;
  }
}

.highlight-box {
  border: 1px solid rgba(46, 213, 115, 0.45);
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.12), rgba(0, 0, 0, 0.6));
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(46, 213, 115, 0.15);
}

.highlight-box--inline {
  margin: 2rem 0;
}

.mobile-nav-toggle {
  display: none;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 2.5rem;
  height: 2rem;
  z-index: 10000;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(46, 213, 115, 0.35);
  border-radius: 10px;
  padding: 0.35rem;
  background: rgba(0, 0, 0, 0.65);
}

.mobile-nav-toggle__line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2ed573 0%, #1a9f4a 100%);
  box-shadow: 0 0 12px rgba(46, 213, 115, 0.5);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .main-nav__container {
    display: none;
  }

  .main-nav--mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(46, 213, 115, 0.18), transparent 45%),
                rgba(0, 0, 0, 0.95);
    z-index: 9000;
    backdrop-filter: blur(6px);
  }

  .main-nav--mobile .main-nav__container {
    display: block;
  }

  .main-nav__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 6rem 1rem 2rem;
  }

  .main-nav--mobile-open {
    display: block;
  }
}

body.menu-open {
   overflow: hidden;
 }

body.mobile-nav-active {
  overflow: hidden;
}

@media (min-width: 769px) {
  .main-nav--mobile {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: none;
  }
}

/* Botón Flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  border-radius: 50%;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg');
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  animation: float 2.2s ease-in-out infinite;
  transition: transform 0.2s ease;
  text-indent: -9999px;
  overflow: hidden;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.12);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}