/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/



/* Primera fuente (ejemplo: para títulos) */
@font-face {
  font-family: 'minoris';
  src: url('Fuentes/minoris/minoris-regular.otf') format('opentype');

}

/* Segunda fuente (ejemplo: para párrafos o botones) */
@font-face {
  font-family: 'archetica';
  src: url('fuentes/archetica/archetica-extralight.otf') format('opentype');
}

@font-face {
  font-family: 'archetica-semibold';
  src: url('fuentes/archetica/archetica-semibold.otf') format('opentype');
}



@font-face {
  font-family: 'ricordo';
  src: url('fuentes/ricordo/RICORDO_Bold.otf') format('opentype');
}





/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/





/* --- RESET Y ROOT --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
  --accent-green: #00a884;
}

/* --- SECCIÓN HERO CON PARALLAX Y ANIMACIÓN --- */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  
  /* EFECTO PARALLAX: La imagen se queda fija al hacer scroll */
  background-attachment: fixed; 
  
  display: flex;
  flex-direction: column;
  animation: slideShow 9s infinite;
  transition: background-image 1s ease-in-out;
}

/* Animación de imágenes */
@keyframes slideShow {
  0%, 25% { background-image: url('IMG/cuerpo.png'); }  
  33%, 58% { background-image: url('IMG/corazon.png'); }  
  66%, 91% { background-image: url('IMG/mente.png'); }
  100% { background-image: url('IMG/cuerpo.png'); }
}

/* --- HEADER Y NAVEGACIÓN --- */
.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 80px;
  width: 100%;
}

.logo-container, .header-spacer {
  flex: 1;
}

.logo img {
  height: 100px;
  display: block;
}

.glass-nav {
  display: flex;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 30px;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
/* --- 1. CONFIGURACIÓN DE LOS LINKS --- */
/* --- 1. CONFIGURACIÓN DEL CONTENEDOR --- */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px; /* Espacio base */
  align-items: center;
  justify-content: center;
  /* Transición suave para que el contenedor se estire cuando los hijos crecen */
  transition: all 0.4s ease; 
}

/* --- 2. ELEMENTOS LI (Los que empujarán a los demás) --- */
.nav-links li {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Transición para el ancho y el espacio interno */
  transition: all 0.3s ease-in-out;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-family: 'ricordo', sans-serif;
  font-weight: 600;
  font-size: 1rem; /* Tamaño base */
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

/* --- 3. EFECTO HOVER: CRECE Y EMPUJA --- */
.nav-links li:hover {
  /* Al aumentar el padding y el tamaño de fuente, 
     el LI físicamente ocupa más espacio y empuja a sus vecinos */
  padding: 0 10px; 
}

.nav-links li:hover a {
  font-size: 1.5rem; /* Aumento del 20% en el tamaño de la letra */
  color: var(--accent-green);
}

.nav-links a.active {
  color: var(--accent-green);
}

/* --- 4. AJUSTE DEL GLASS NAV --- */
.glass-nav {
  display: flex;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  /* El ancho automático permite que la caja crezca si el texto empuja mucho */
  width: auto; 
  transition: all 0.3s ease;
}

/* --- BOTONES INFERIORES --- */
.hero-main-content {
  margin-top: auto;
  padding-bottom: 50px;
}

.pill-buttons-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.pill-button {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 15px 25px;
  border-radius: 50px;
  color: #fff;
  font-family: 'minoris', sans-serif;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 
              0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.pill-button:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* --- RESPONSIVO --- */
@media (max-width: 1024px) {
  .hero-section {
    /* El parallax suele dar problemas en móviles, 
       aquí lo desactivamos para mejor rendimiento */
    background-attachment: scroll;
  }
  .header-top-wrapper {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
}
/*----------------------------------------------------------------------*/





/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mente-seccion {
  display: flex;
  min-height: 100vh;
  font-family: 'Segoe UI', sans-serif;
  background-color: #D0CEFD;
}

/* --- Lado de la Imagen --- */
.mente-imagen {
  flex: 1;
}

.mente-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Lado del Contenido --- */
.mente-contenido {
  flex: 1.5;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1; 
}

.decoracion-superior {
  position: absolute;
  top: 100px;
  right: 60px;
  z-index: -1; 
}

.circulo-flecha {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circulo-flecha img {
  width: 300%; 
  height: auto;
  object-fit: contain;
  display: block;
}

.mente-titulo {
  color: #7a68bd;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.1;
  font-family: 'ricordo', sans-serif;
}

.mente-texto {
  color: #7a68bd;
  line-height: 1.6;
  margin-bottom: 60px;
  max-width: 600px;
  font-family: 'archetica', sans-serif;
  font-size: 1rem;  
}

/* --- Botones y textos inferiores --- */
.mente-botones {
  display: flex;
  gap: 30px;
}

.boton-item {
  flex: 1;
  text-align: center;
}

.pildora {
  display: inline-block;
  background-color: #7a68bd;
  color: white;
  padding: 10px 60px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: 'archetica', sans-serif;
  font-size: .9rem;  
}

.boton-item p {
  color: #7a68bd;
  font-size: 0.85rem;
  line-height: 1.4;
}

/* --- Responsivo --- */
@media (max-width: 1024px) {
  .mente-seccion {
    flex-direction: column;
  }

  /* OCULTAR FLECHA EN RESPONSIVE */
  .decoracion-superior {
    display: none;
  }

  .mente-contenido {
    padding: 40px 20px;
    text-align: center;
  }
  .mente-botones {
    flex-direction: column;
    align-items: center;
  }
  .mente-texto {
    margin-left: auto;
    margin-right: auto;
  }
}
/*------------------------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/* --- ESTILOS DE LA SECCIÓN PROGRAMAS --- */



/* El contenedor padre debe ser relativo */
.Testimonio-section {
  position: relative;
  /* Asegúrate de que la caja tenga un padding o min-height 
     para que el botón no tape el texto del testimonio */
  padding-bottom: 80px; 
}

.label-testimonio {
  display: inline-block;
  background-color: #7bbce9;
  color: white;
  padding: 6px 50px;
  border-radius: 25px;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'archetica', sans-serif;
  
  /* Reset de estilos de botón */
  border: none;
  cursor: pointer;
  text-decoration: none; /* Por si usas <a> */
  transition: background-color 0.3s ease, transform 0.2s ease;

  /* Posicionamiento absoluto respecto a .Testimonio-item */
  /* Asegúrate que .Testimonio-item tenga position: relative; */
  position: absolute;
  bottom: 60px;
  right: 60px;
  margin-bottom: 0;
}

/* Efectos de interacción */
.label-testimonio:hover {
  background-color: #5da8d8; /* Un tono más oscuro */
  transform: scale(1.05);    /* Ligero crecimiento */
}

.label-testimonio:active {
  transform: scale(0.95);    /* Efecto de pulsado */
}

/* Ajuste para móviles */
@media (max-width: 480px) {
  .label-testimonio {
    font-size: 1.1rem;
    padding: 5px 30px;
    bottom: 10px;
    right: 10px;
  }
}




.Testimonio-section {
  background-color: #DCEAF8; /* Fondo oscuro casi negro */
  padding: 60px 20px;
  color: #ffffff;
}

.Testimonio-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Encabezado */
.Testimonio-header {
  margin-bottom: 30px;
  font-family: 'ricordo', sans-serif; /* Tu fuente .otf */
  color: #74B3E1;
}

.sub-title {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.main-title-green {
  font-size: 3.5rem;
  font-weight: 800;
  color: #74B3E1; /* Verde brillante */
  margin-top: -10px;
  letter-spacing: 1px;
}

/* Imagen Hero */
.Testimonio-hero {
  width: 100%;
  margin-bottom: 40px;
}

.Testimonio-hero img {
  width: 100%;
  height: 300px;
  border-radius: 20px; /* Bordes redondeados */
  display: block;
  object-fit: cover;
}

/* Grid de Planes */
.Testimonio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Dos columnas según la imagen */
  gap: 40px 60px;
}

.Testimonio-item h3 {
  font-size: 1.4rem;
  font-weight: 800; /* Aumentado de 600 a 800 para mayor grosor */
  margin-bottom: 5px;
  color: #74B3E1;
  font-family: 'archetica', sans-serif;
}

.Testimonio-item p {
  font-size: 0.9rem;
  color: #74B3E1;
  margin-bottom: 15px;
  font-family: 'archetica', sans-serif;
}

/* Etiqueta de Precio (Botón Verde) */
.Testimonio-tag {
  display: inline-block;
  color: #74B3E1;
  padding: 10px 25px;
  font-weight: bold;
  font-size: 1.1rem;
  font-family: 'archetica', sans-serif;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
  .Testimonio-grid {
    grid-template-columns: 1fr; /* Una sola columna en móvil */
  }
  .main-title-green {
    font-size: 2.5rem;
  }
}

/*---------------------------------------------------------------------------------------------------------------------*/


/* --- ESTILO SECCIÓN BLANCA --- */
.inscripcion-section-white {
  background-color: #ffffff; /* Fondo blanco solicitado */
  padding: 80px 40px;
  position: relative;
  font-family: 'PonteFitFont', sans-serif; /* Tu fuente .otf */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  overflow: hidden;
}

.inscripcion-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
  align-items: center;
}

/* IMAGEN OVALADA */
.inscripcion-visual {
  position: relative;
  flex: 1;
}

.frame-oval {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1.3;
  border-radius: 200px; /* Forma ovalada superior */
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.frame-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blue-dot {
  position: absolute;
  top: 60px;
  right: -20px;
  width: 55px;
  height: 55px;
  background-color: #7bbce9; /* Color azul decorativo */
  border-radius: 50%;
}

/* BLOQUE DE TEXTO */
.inscripcion-text-box {
  flex: 1.2;
}

.label-inscripcion {
  display: inline-block;
  background-color: #7bbce9;
  color: white;
  padding: 6px 22px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 25px;
  font-family: 'archetica', sans-serif;
}

.title-bold {
  color: #5a96c1; /* Tono azul para el título principal */
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: 'ricordo', sans-serif;
}

.description-text {
  color: #7bbce9; /* Azul más suave para la descripción */
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: 'archetica', sans-serif;
}

.highlight-phrase {
  color: #3b8ac4;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-family: 'archetica', sans-serif;
}

/* BOTÓN OVALADO AZUL */
.btn-join-pill {
  display: inline-block;
  background-color: #7bbce9;
  color: white;
  text-decoration: none;
  padding: 18px 35px;
  border-radius: 50px; /* Forma de píldora */
  font-weight: bold;
  font-size: 1rem;
  transition: 0.3s;
  font-family: 'archetica', sans-serif;
}

.btn-join-pill:hover {
  background-color: #5a96c1;
  transform: translateY(-3px);
}

.arrow-corner {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 4rem;
  color: #7bbce9;
  opacity: 0.5;
  transform: rotate(180deg); /* Flecha apuntando según diseño */
}
/*------------------------------------------------------------------------------------------------------------------------*/

/* Variables para fácil mantenimiento */
:root {
  --color-green: #00a884;
  --bg-green: #e6f5f2;
  --color-purple: #8e8ec8;
  --bg-purple: #f0f0fa;
  --color-pink: #f2b1c2;
  --bg-pink: #fdf0f4;
  --color-mint: #c5e6e1;
}

.programas-disponibles {
  background-color: #ffffff;
  padding: 100px 50px;
  font-family: 'ricordo', sans-serif;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.container-main {
  display: flex;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
  align-items: center;
  position: relative;
}


/* --- SECCIÓN IMAGEN --- */
.image-section {
  position: relative;
  flex: 0 0 35%;
}

.oval-frame {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  border-radius: 200px 200px 50px 200px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.oval-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mint-dot {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: var(--color-mint);
  border-radius: 50%;
  z-index: 2;
}

/* --- SECCIÓN TARJETAS  --- */
.content-section {
  flex: 1;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-green);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Base de la Card como Enlace */
.card {
  padding: 40px 50px;
  border-radius: 35px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* Reset de Estilos de Enlace */
  text-decoration: none; 
  cursor: pointer;
  outline: none;
}

/* Efectos de Interacción */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card:active {
  transform: translateY(-5px) scale(0.98); /* Efecto de clic */
}

/* Colores por categoría */
.card-green { background-color: var(--bg-green); color: var(--color-green); }
.card-purple { background-color: var(--bg-purple); color: var(--color-purple); }
.card-pink { background-color: var(--bg-pink); color: var(--color-pink); }

.card-label {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
  min-height: 50px;
  color: inherit; /* Mantiene el color del padre */
}

.card-price {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 25px;
  color: inherit;
}

.card-price span { 
  font-size: 1rem; 
  vertical-align: super; 
}

.card-details {
  list-style: none;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.6;
  padding: 0;
  color: inherit;
}

/* --- DECORACIONES SECCIÓN --- */
.top-right-logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
}

.circular-text {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#circlePath { fill: transparent; }
.circular-text text {
  fill: var(--color-purple);
  font-size: 8px;
  font-weight: bold;
  letter-spacing: 2px;
}

/* --- RESPONSIVO --- */
@media (max-width: 992px) {
  .container-main { flex-direction: column; }
  .image-section { width: 80%; }
  .cards-wrapper { 
    grid-template-columns: 1fr; 
    width: 100%; 
    gap: 20px;
  }
  .section-title { text-align: center; font-size: 2rem; }
}
/*----------------------------------------------------------------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

.ponte-fit-footer {
    background-color: #d1c4f0; /* Color lavanda de fondo */
    padding: 60px 20px;
    font-family: 'Montserrat', sans-serif;
    color: #7b61ad; /* Morado del texto */
    display: flex;
    justify-content: center;
}

.footer-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    background-color: #d1c4f0; /* Color lavanda de fondo */
    padding: 60px 20px;
}

/* --- Lado Izquierdo: Imagen y Decoración --- */
.image-wrapper {
    position: relative;
    flex: 1;
    max-width: 450px;
}

.main-img {
    width: 100%;
    border-radius: 15px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.circle-decorator {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background-color: #7b61ad;
    border-radius: 50%;
    z-index: 2;
}

.circular-text {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    fill: #7b61ad;
    font-size: 8px;
    text-transform: uppercase;
    font-weight: bold;
}

.circular-text path { fill: none; }

/* --- Lado Derecho: Texto --- */
.contact-info {
    flex: 1;
    position: relative;
}

.arrow-icon {
    position: absolute;
    top: -80px;
    right: 0;
    font-size: 80px;
    opacity: 0.5;
}

.contact-info h2 {
    font-size: 3rem;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 700;
}

.details {
    margin: 20px 0 40px 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

.brand {
    font-size: 1rem;
    letter-spacing: 1px;
}

.brand .by {
    font-weight: 300;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .arrow-icon { display: none; }
}


























:root {
  --brand-green: #00a884;
  --text-dark: #1a1a1a;
  --bg-light: #f4f7f6;
}

.section-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
  gap: 40px;
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  font-family: sans-serif;
  background-color: var(--bg-light);
}

/* --- Estilos Columna Izquierda --- */
.main-title {
  color: var(--brand-green);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.description {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 30px;
}

.image-box img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* --- Estilos Columna Derecha (Tarjetas) --- */
.cards-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-card {
  background-color: var(--brand-green);
  color: white;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateX(-10px); /* Efecto sutil al pasar el mouse */
}

.card-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 20px;
}

.info-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.info-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* --- Responsivo --- */
@media (max-width: 850px) {
  .section-container {
    grid-template-columns: 1fr; /* En tablets/móviles una sola columna */
  }
}



.testimonios-section {
  background-color: #f4f7f6;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.testimonios-container {
  background-color: #b2ebd5; /* Color verde menta claro del fondo */
  border-radius: 20px;
  padding: 40px;
  max-width: 1000px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}

/* Título Vertical */
.vertical-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 3rem;
  color: #00a884;
  font-weight: 800;
  margin: 0;
  letter-spacing: 2px;
}

/* Imagen Ovalada */
.image-wrapper {
  flex-shrink: 0;
}

.oval-img {
  width: 280px;
  height: 400px;
  object-fit: cover;
  border-radius: 150px; /* Crea el efecto de óvalo */
}

/* Contenido de Testimonios */
.testimonials-content {
  color: #1a1a1a;
  font-family: sans-serif;
}

.intro-text {
  font-weight: bold;
  color: #00a884;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.quote {
  margin-bottom: 20px;
}

.quote p {
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

.quote span {
  display: block;
  text-align: right;
  font-weight: bold;
  font-size: 0.85rem;
}

/* Botón */
.cta-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.btn-decidi {
  background-color: #fff;
  color: #00a884;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.btn-decidi:hover {
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 850px) {
  .testimonios-container {
    flex-direction: column;
    text-align: center;
  }
  .vertical-title {
    writing-mode: horizontal-tb;
    transform: none;
    margin-bottom: 20px;
  }
  .quote span {
    text-align: center;
  }
}




.inscripcion-section {
  background-color: #000000; /* Fondo negro profundo */
  padding: 80px 20px;
  color: #ffffff;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

.inscripcion-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* --- Lado del Texto --- */
.inscripcion-content {
  flex: 1;
  text-align: right; /* Alineación a la derecha como en la imagen */
}

.label-top {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.cta-title {
  color: #00a884; /* Verde característico */
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.cta-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 500px;
  margin-left: auto; /* Empuja el texto a la derecha */
}

.btn-primary {
  display: inline-block;
  background-color: #00a884;
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s;
}

.btn-primary:hover {
  background-color: #008f6f;
  transform: translateY(-3px);
}

/* --- Lado de la Imagen --- */
.inscripcion-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.oval-frame {
  width: 350px;
  height: 500px;
  overflow: hidden;
  border-radius: 175px; /* Crea el efecto ovalado perfecto */
}

.oval-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Ajuste para Móviles --- */
@media (max-width: 850px) {
  .inscripcion-container {
    flex-direction: column-reverse; /* Imagen arriba, texto abajo */
    text-align: center;
  }
  
  .inscripcion-content {
    text-align: center;
  }
  
  .cta-description {
    margin-left: auto;
    margin-right: auto;
  }
}









.programas-section {
  background-color: #121212; /* Fondo oscuro */
  padding: 60px 20px;
  color: white;
  font-family: 'Arial', sans-serif;
}

.programas-container {
  max-width: 1000px;
  margin: 0 auto;
}

.programas-header {
  margin-bottom: 30px;
}

.sub-title {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.main-title-green {
  color: #00a884;
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: -5px;
}

/* Imagen Principal con bordes redondeados */
.programas-hero {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.programas-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Rejilla de precios */
.planes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Dos columnas */
  gap: 40px;
}

.plan-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.plan-item p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 15px;
}

/* Etiqueta de precio estilo botón */
.price-tag {
  display: inline-block;
  background-color: #00a884;
  color: white;
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 0.9rem;
}

/* Ajuste responsivo */
@media (max-width: 768px) {
  .planes-grid {
    grid-template-columns: 1fr; /* Una columna en móvil */
    gap: 30px;
  }
  
  .programas-hero {
    height: 250px;
  }
}

:root {
  --brand-green: #00a884; /* El tono verde de la imagen */
  --text-dark: #1a1a1a;
}

.footer-container {
  padding: 40px 20px;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--brand-green);
  border-radius: 20px; /* Bordes redondeados del contenedor */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  overflow: hidden;
  min-height: 400px;
}

/* --- Lado Izquierdo: Textos --- */
.contact-info {
  flex: 1;
  color: var(--text-dark);
  font-family: 'Arial', sans-serif;
  padding-left: 20px;
}

.contact-title {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 15px;
}

.contact-links {
  list-style: none;
  padding: 0;
  margin-bottom: 60px; /* Espacio para separar del copyright */
}

.contact-links li {
  margin-bottom: 8px;
}

.contact-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: opacity 0.2s;
}

.contact-links a:hover {
  opacity: 0.7;
}

.copyright {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
}

/* --- Lado Derecho: Imagen --- */
.footer-image-box {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  height: 100%;
}

.yoga-img {
  width: 90%;
  max-width: 400px;
  height: auto;
  border-radius: 15px; /* Bordes redondeados de la imagen interna */
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Sombra suave para profundidad */
}

/* --- Responsividad --- */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  
  .contact-info {
    padding-left: 0;
    margin-bottom: 30px;
  }
  
  .contact-links {
    margin-bottom: 30px;
  }

  .footer-image-box {
    justify-content: center;
    width: 100%;
  }

  .yoga-img {
    width: 100%;
  }
}

/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/
/* Sección Base */
.alimentacion-consciente {
    width: 100%;
    padding: 80px 5%;
    background-color: #ffffff;
    font-family: 'archetica', sans-serif;
}

.alimentacion-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    font-family: 'archetica', sans-serif;
}

/* Columna de Información */
.alimentacion-info {
    flex: 1.2;
    font-family: 'archetica', sans-serif;
}

.alimentacion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-family: 'archetica', sans-serif;
}

.alimentacion-icon {
    width: 45px;
    color: #006ec1;
    font-family: 'archetica', sans-serif;
}

.alimentacion-title {
    font-size: 2.2rem;
    color: #006ec1;
    line-height: 1.1;
    font-weight: 800;
    margin: 0;
    font-family: 'archetica', sans-serif;
}

.alimentacion-title span {
    font-weight: 400;
    font-family: 'archetica', sans-serif;
}

/* Tagline Azul Claro */
.alimentacion-tagline {
    display: inline-block;
    background-color: #d8edff;
    color: #006ec1;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: 'archetica', sans-serif;
}

/* Descripción */
.alimentacion-description {
    color: #6fb2e9;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 480px;
    font-family: 'archetica', sans-serif;
}

/* Botón de Acción */
.alimentacion-btn {
    background-color: #d8edff;
    color: #006ec1;
    border: none;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'archetica', sans-serif;
}

.alimentacion-btn:hover {
    background-color: #c2e1f9;
    font-family: 'archetica', sans-serif;
}

/* Columna de Imagen */
.alimentacion-figure {
    flex: 1;
    margin: 0;
    font-family: 'archetica', sans-serif;
}

.alimentacion-image-wrapper {
    position: relative;
    border-radius: 40px; /* Bordes redondeados del contenedor */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    font-family: 'archetica', sans-serif;
}

.alimentacion-image-wrapper img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

/* Badge con flecha inferior */
.alimentacion-badge-circle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 110px;
    height: 110px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-top-left-radius: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 15px;
    font-family: 'archetica', sans-serif;
}

.alimentacion-arrow {
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    font-family: 'archetica', sans-serif;
}

/* Adaptabilidad (Responsive) */
@media (max-width: 850px) {
    .alimentacion-container {
        flex-direction: column;
        text-align: center;
        font-family: 'archetica', sans-serif;
    }
    
    .alimentacion-header {
        justify-content: center;
        font-family: 'archetica', sans-serif;
    }
    
    .alimentacion-description {
        margin: 0 auto 30px;
        font-family: 'archetica', sans-serif;
    }

    .alimentacion-figure {
        width: 100%;
        max-width: 400px;
        font-family: 'archetica', sans-serif;
    }
}

/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/

/* Variables de color para fácil personalización */
:root {
    --pink-main: #f8c9d9;
    --pink-dark: #e88fb1;
    --pink-light: #fff0f5;
    --text-pink: #f26fa1;
}

.entrenamiento {
    padding: 60px 5%;
    background-color: #ffffff;
    font-family: 'archetica', sans-serif;
}

/* Encabezado Principal */
.entrenamiento-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
      font-family: 'archetica', sans-serif;
}

.entrenamiento-icon-circle {
    width: 50px;
    height: 50px;
    border: 2px solid var(--pink-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-main);
      font-family: 'archetica', sans-serif;
}

.entrenamiento-icon-circle svg {
    width: 25px;
}

.entrenamiento-main-title {
    background-color: var(--pink-light);
    color: var(--pink-dark);
    padding: 10px 40px;
    border-radius: 15px;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
      font-family: 'archetica', sans-serif;
}

/* Grid de Tarjetas */
.entrenamiento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
      font-family: 'archetica', sans-serif;
}

/* Estilo de la Tarjeta */
.entrenamiento-card {
    background-color: var(--pink-light);
    border-radius: 35px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
      font-family: 'archetica', sans-serif;
}

.card-body {
    display: flex;
    gap: 20px;
}

.card-image {
    flex: 1;
    margin: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

.card-content {
    flex: 1.2;
}

.card-content h3 {
    color: var(--pink-dark);
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.2;
      font-family: 'ricordo', sans-serif;
}

.card-content p {
    color: var(--text-pink);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
      font-family: 'archetica', sans-serif;
}

/* Botones */
.card-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-entrenamiento {
    background-color: #ffffff;
    color: var(--pink-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      font-family: 'archetica', sans-serif;
}

.btn-entrenamiento:hover {
    transform: scale(1.05);
    background-color: var(--pink-main);
    color: white;
      font-family: 'archetica', sans-serif;
}

/* Adaptabilidad para móviles */
@media (max-width: 768px) {
    .card-body {
        flex-direction: column;
          font-family: 'archetica', sans-serif;
    }
    
    .entrenamiento-main-title {
        font-size: 1.4rem;
          font-family: 'archetica', sans-serif;
        padding: 10px 20px;
    }

    .entrenamiento-card {
        padding: 20px;
          font-family: 'archetica', sans-serif;
    }
}
/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/
/*====================================================FUENTES===============================================================*/
/* Contenedor flotante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Verde oficial de WhatsApp */
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* El icono SVG dentro del botón */
.whatsapp-icon {
    width: 35px;
    height: 35px;
}

/* Efecto al pasar el mouse */
.whatsapp-float:hover {
    background-color: #128c7e; /* Verde más oscuro */
    transform: scale(1.1);
}

/* Tooltip (oculto por defecto) */
.tooltip-wa {
    visibility: hidden;
    width: 140px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    right: 75px; /* Aparece a la izquierda del botón */
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .tooltip-wa {
    visibility: visible;
    opacity: 1;
}





































        /* Reset básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .ponte-fit-footer {
            background-color: #d1c4f0; /* Color lavanda de fondo */
            padding: 80px 40px;
            font-family: 'Montserrat', sans-serif;
            color: #7b61ad; /* Morado del texto */
            display: flex;
            justify-content: center;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1100px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
        }

        /* --- Lado Izquierdo: Imagen y Decoración --- */
        .image-wrapper {
            position: relative;
            flex: 1;
            max-width: 450px;
        }

        .main-img {
            width: 100%;
            border-radius: 20px;
            display: block;
            border: none; /* Eliminado cualquier borde */
            box-shadow: none; /* Eliminado el recuadro/sombra blanca */
        }

        /* Círculo morado superior */
        .circle-decorator {
            position: absolute;
            top: -25px;
            right: -25px;
            width: 70px;
            height: 70px;
            background-color: #7b61ad;
            border-radius: 50%;
            z-index: 2;
        }

        /* Texto circular inferior */
        .circular-text {
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 220px;
            height: 220px;
            fill: #7b61ad;
            font-size: 9px;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .circular-text path { fill: none; }

        /* --- Lado Derecho: Contacto --- */
        .contact-info {
            flex: 1;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Flecha decorativa superior */
        .arrow-icon {
            position: absolute;
            top: -100px;
            right: 0;
            font-size: 100px;
            color: #7b61ad;
            opacity: 0.6;
            font-weight: 200;
        }

        .contact-info h2 {
            font-size: 3.5rem;
            margin: 0;
            letter-spacing: 3px;
            font-weight: 700;
            line-height: 1;
        }

        .details {
            margin: 25px 0 50px 0;
            font-size: 1.3rem;
            line-height: 1.6;
            font-weight: 400;
        }

        .brand {
            font-size: 1.1rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .brand strong {
            font-weight: 700;
        }

        .brand .by {
            font-weight: 300;
            opacity: 0.8;
            margin-left: 5px;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }
            .arrow-icon { display: none; }
            .circular-text {
                left: 50%;
                transform: translateX(-50%);
                bottom: -60px;
            }
        }

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .arrow-icon { 
        display: none; 
    }

    /* Modificado: Oculta el texto circular en móviles */
    .circular-text {
        display: none;
    }

    /* Opcional: Ajustar el tamaño del título en móviles si queda muy grande */
    .contact-info h2 {
        font-size: 2.5rem;
    }
}
