﻿/* ======================================================
   LIMITE GLOBAL DE ANCHO
====================================================== */

.container {
  max-width: 1200px;
}

/* ======================================================
   VARIABLES GLOBALES
====================================================== */
:root {
  --font-default: "Open Sans", system-ui, sans-serif;
  --font-primary: "Microsoft Tai Le", sans-serif;
  --font-secondary: "Inter", sans-serif;

  --color-default: #212529;
  --color-primary: #C2E39D;
  --color-secondary: #37373f;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-default);
  color: var(--color-default);
  background: #ffffff;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #999;
}



/* ======================================================
   SECCIONES GENERALES (AISLAMIENTO)
====================================================== */
section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 14px;
  text-transform: uppercase;
  color: #537380;
  margin-bottom: 10px;
}

.section-header h3,
.section-header p {
  font-size: 36px;
  font-family: var(--font-primary);
}


/* ======================================================
   
====================================================== */
.hero {
  min-height: 60vh;
  padding: 160px 0 60px;
  background: #ffffff;
}

.hero h2 {
  font-size: 64px;
  font-family: var(--font-primary);
}

.hero h2 span {
  color: var(--color-primary);
}

.hero p {
  max-width: 600px;
  color: #555;
}

.hero .btn-primary {
  display: inline-block;
  padding: 12px 36px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
}



/* ======================================================
BIO
====================================================== */
.about-img img {
  width: 100%;
  border-radius: 12px;
}



/* ======================================================
   /* ======================================================
   BLOG (VERDE)
====================================================== */
/* ======================================================
   BLOG
====================================================== */

.blog {
  background: linear-gradient(
    180deg,
    #fffaf6 0%,
    #f6e6da 45%,
    #f1dccb 100%
  );
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.blog-item {
  margin-bottom: 80px;
}

/* CARD */

.blog-card {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  transition: .35s;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .12);
}

/* IMAGEN */

.blog-img {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-img img {
  width: 100%;
  aspect-ratio: 1674 / 940;
  object-fit: cover;
  display: block;
  transition: .5s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.02);
}

/* CONTENIDO */

.blog-box h2 {
  font-size: 2rem;
  margin-bottom: 22px;
  color: #2f3e4f;
  text-align: center;
  line-height: 1.3;
}

.blog-box h3 {
  font-size: 1.3rem;
  margin-top: 28px;
  color: #3e5c76;
}

.blog-box p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4a4a4a;
  margin-bottom: 18px;
}

/* TEXTO OCULTO */

.blog-hidden {
  display: none;
}

/* BOTON */

.btn-blog {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 34px;
  border-radius: 60px;
  border: none;
  background: #70C431;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.btn-blog:hover {
  background: #83D149;
  transform: translateY(-2px);
}

.blog-hidden{
  display:none;
}

/* BOTON AGENDA */

.btn-cursos {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #7fcf54, #5fbf3c);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(95, 191, 60, 0.45);
}

.btn-cursos:hover {
  background: linear-gradient(135deg, #5fbf3c, #3fae2b);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(63, 174, 43, 0.55);
  color: #ffffff;
}


/* RESPONSIVE */

@media(max-width:991px){

  .blog-card {
    padding: 22px;
  }

  .blog-box h2 {
    font-size: 1.7rem;
  }

}

@media(max-width:768px){

  .blog {
    padding: 70px 0;
  }

  .blog-card {
    border-radius: 24px;
    padding: 18px;
  }

  .blog-img {
    border-radius: 18px;
  }

  .blog-box h2 {
    font-size: 1.4rem;
  }

  .blog-box p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .btn-blog,
  .btn-cursos {
    width: 100%;
    text-align: center;
  }

}

/* ======================================================
   NOTAS / NOTICIAS
====================================================== */
.nota {
  display: flex;
  gap: 30px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
  transition: .3s;
}

.nota:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.nota-img {
  width: 220px;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
}

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

.nota-texto h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.nota-texto p {
  font-size: 15px;
  line-height: 1.75;
}



/* ======================================================
   CONTACTO
====================================================== */
.contact {
  background: #ffffff;
  padding: 80px 0;
}

.contact .info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f6f9f4;          /* fondo suave */
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

/* ICONOS */
.contact .info-item i.icon,
.contact .info-item svg {
  font-size: 36px;               /* tamaño del ícono */
  color: #5fbf3c;                /* verde tenue visible */
  background: rgba(194, 227, 157, 0.35); /* fondo circular suave */
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

/* Hover ICONOS */
.contact .info-item:hover i.icon,
.contact .info-item:hover svg {
  color: #ffffff;
  background: #5fbf3c;
  box-shadow: 0 8px 20px rgba(95,191,60,0.45);
}

/* TEXTO */
.contact .info-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2a6f1b;
  margin-bottom: 6px;
}

.contact .info-item p {
  font-size: 15px;
  margin: 0;
  color: #4a4a4a;
}


.footer {
  background: #1f1f24; /* fondo gris oscuro */
  color: rgba(255, 255, 255, 0.7);
  padding-top: 50px;
  font-family: var(--font-default);
}

.footer .credits {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer .credits a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer .credits a:hover {
  color: #ffffff;
}

/* LÍNEA COPYRIGHT FINAL VISIBLE */
.footer-bottom {
  background: #1a1a1f; /* un tono un poco más oscuro para separar */
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.15); /* línea visible */
  padding: 15px 0;
  font-size: 14px;
}



/* ======================================================
   CURSOS IKIGAI 
====================================================== */
.cursos {
  background: linear-gradient(
    180deg,
    #c2e39d 0%,
    #eaf5dc 50%,
    #c2e39d 100%
  );
  padding: 120px 0;
}

/* Caja principal de cada curso */
.cursos-box {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  padding: 50px;
  margin: 0 auto 80px auto;
  max-width: 1300px; /* 👈 separa visualmente */
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  position: relative;
}

/* Hover elegante */
.cursos-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 65px rgba(0, 0, 0, 0.18);
}

/* Títulos */
.cursos-box h4 {
  font-size: 28px;
  font-weight: 700;
  color: #2a6f1b;
  margin-bottom: 20px;
}

/* Texto */
.cursos-box p {
  font-size: 16px;
  line-height: 1.75;
  color: #3f3f3f;
}

/* Imagen */
.cursos-img {
  padding-left: 20px;
}

.cursos-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease;
}

.cursos-box:hover .cursos-img img {
  transform: scale(1.05);
}


.curso-star{
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #ff5e00, #ff8a1f, #ffd2a6);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(26, 73, 103, 0.35);
  animation: pulseStar 2s infinite;
}

.curso-star--blue-electric {
  background: linear-gradient(135deg, #00c6ff, #0072ff, #00e0ff);
  box-shadow: 0 10px 25px rgba(0, 198, 255, 0.45);
}


.curso-star::before,
.curso-star::after{
  content: "✦";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #ffffff;
}

.curso-star::before{
  left: 12px;
}

.curso-star::after{
  right: 12px;
}

@keyframes pulseStar{

  0%{
    transform: scale(1);
    box-shadow: 0 0 0 rgba(26, 73, 103, 0.45);
  }

  50%{
    transform: scale(1.08);
    box-shadow: 0 0 28px rgba(47, 109, 151, 0.55);
  }

  100%{
    transform: scale(1);
    box-shadow: 0 0 0 rgba(26, 73, 103, 0.45);
  }
}
/* ======================================================
   BOTÓN
====================================================== */
.btn-cursos {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #7fcf54, #5fbf3c);
  color: #ffffff;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(95, 191, 60, 0.45);
}

.btn-cursos:hover {
  background: linear-gradient(135deg, #5fbf3c, #3fae2b);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(63, 174, 43, 0.55);
  color: #ffffff;
}

/* ======================================================
   SEPARADOR ENTRE CURSOS
====================================================== */
.cursos-separator {
  width: 120px;
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent,
    #7fcf54,
    transparent
  );
  border-radius: 10px;
  margin: -40px auto 80px auto;
  opacity: 0.9;
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 992px) {
  .cursos-box {
    padding: 35px;
  }

  .cursos-img {
    padding-left: 0;
    margin-top: 25px;
  }

  .cursos-box h4 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .cursos-box {
    padding: 28px;
  }

  .btn-cursos {
    width: 100%;
    text-align: center;
  }
}


/* ======================================================
   SECCIÓN SESIONES / WHY-US
====================================================== */
#why-us {
  background: linear-gradient(135deg, #dff7c0 0%, #c2e39d 100%); /* verde manzana degradado tenue */
  padding: 100px 0;
}

#why-us .section-header {
  text-align: center;
  margin-bottom: 60px;
}

#why-us .titulo-degrade {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-primary);
 background: linear-gradient(90deg, #5fa63a 0%, #9fd06f 50%, #5fa63a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

#why-us .icon-box {
  background: #ffffff; /* fondo blanco de cada box */
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

#why-us .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

#why-us .icon-box i {
  font-size: 36px;
  color: #7fcf54; /* iconos verdes */
  margin-bottom: 15px;
}

#why-us .icon-box h4 {
  font-size: 22px;
  margin-bottom: 15px;
}

#why-us .icon-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
}

@media (max-width: 992px) {
  #why-us .icon-box {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  #why-us {
    padding: 60px 0;
  }
}


/* ======================================================
   BOTÓN PLAY GLIGHTBOX
====================================================== */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(127, 207, 84, 0.8); /* verde manzana tenue */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.play-btn::before {
  content: "";
  display: block;
  margin-left: 5px;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #fff;
}

.play-btn:hover {
  background: rgba(127, 207, 84, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ======================================================
   GLIGHTBOX VIDEO 
====================================================== */
.glightbox-container {
  background: rgba(0,0,0,0.8); /* fondo semitransparente */
  z-index: 1050;
}

.glightbox-container iframe,
.glightbox-container video {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
}


/* ======================================================
   SEPARADOR 
====================================================== */
.section-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px 0; /* espacio entre secciones */
}

.section-separator::before,
.section-separator::after {
  content: "";
  flex: 1; /* las líneas se expanden */
  height: 2px; /* grosor de la línea */
  background-color: #7fcf54; /* color de la línea */
  max-width: 120px; /* longitud máxima de la línea a cada lado */
}

.section-separator::before {
  margin-right: 15px; /* espacio entre línea y símbolo */
}

.section-separator::after {
  margin-left: 15px; /* espacio entre símbolo y línea */
}

.section-separator span {
  color: #7fcf54; /* mismo color de las líneas */
  font-size: 24px; /* tamaño del símbolo */
  font-weight: bold;
}

/* ==============================
   TESTIMONIOS
============================== */
.testimonials {
  padding: 60px 0;
  background-color: #f4f4f4;
}

.testimonial-item {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.testimonial-content p {
  font-size: 16px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.testimonial-content h3 {
  font-size: 20px;
  color: #222222;
  margin-top: 10px;
}

.testimonial-content h4 {
  font-size: 14px;
  color: #7fcf54; /* verde manzana para subtítulo */
  margin-bottom: 10px;
}

/* Línea al lado de cada comentario */
.testimonial-line {
  width: 50px;
  height: 3px;
  background-color: #7fcf54; /* verde manzana */
  margin: 10px 0 15px 0;
}

/* Estrellas verdes */
.stars i {
  color: #7fcf54;
  margin-right: 4px;
  font-size: 18px;
}

/* Quotes */
.quote-icon-left, .quote-icon-right {
  font-size: 24px;
  color: #7fcf54;
}

.testimonial-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #7fcf54;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-img {
    width: 80px;
    height: 80px;
  }
}
/* ======================================================
   HEADER
====================================================== */
.header {
  height: 90px;
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 60px;
}

/* ======================================================
   NAVBAR – ESCRITORIO
====================================================== */
.navbar {
  display: flex;
  align-items: center;
  margin-left: auto;
  transition: 0.3s;
}

/* Botonera (links) */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0 32px 0 0; /* 🔥 corre la botonera a la izquierda */
  padding: 0;
}

.navbar a {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: #7fcf54;
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
}

/* Hover underline */
.navbar a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #6eb544;
  transition: width 0.3s ease;
}

.navbar a:hover {
  color: #6eb544;
}

.navbar a:hover::after {
  width: 100%;
}

/* Botón Agendar Sesión */
.btn-book-a-table {
  background: #7fcf54;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-book-a-table:hover {
  background: #6eb544;
}

/* ======================================================
   SWIPER
====================================================== */
.swiper-button-prev,
.swiper-button-next {
  color: green;
}

@media (max-width: 991px) {

  #navbarSupportedContent {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;

    background: rgba(194, 227, 157, 0.95);
    backdrop-filter: blur(10px);

    padding: 15px;
    border-radius: 0 0 12px 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .navbar-nav {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .navbar-nav .nav-link {
    font-size: 14px;
    padding: 8px;
    color: #2a6f1b;
  }

  .btn-book-a-table {
    margin-top: 10px;
  }

  /* HAMBURGUESA SIMPLE */
  .navbar-toggler {
    border: none;
  }

}
/* ============================================
   DESKTOP (NO TOCAR)
============================================ */

@media (min-width: 992px) {
  #navbarSupportedContent {
    position: static !important;
    height: auto !important;
    background: none !important;
    left: 0 !important;
    display: flex !important;
  }
}

AGENDAR

.contact .info-item h3 a.agendar-link {
  text-decoration: none;
  color: var(--color-secondary); /* gris oscuro igual al sistema */
  transition: color 0.3s ease;
}

.contact .info-item h3 a.agendar-link:hover {
  color: #7fcf54; /* verde manzana igual al resto del sitio */
}

MODAL
.gslide-video .gvideo-wrapper {
  width: 90vw !important;
  max-width: 1200px;
  height: auto !important;
  margin: auto;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.gslide-video iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

html, body {
  overflow-x: hidden;
}


/* ===== SECCION LIBRO (AISLADA) ===== */
section.book-section-pro {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b) !important;
}

/* CONTENEDOR */
.book-section-pro .book-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* IMAGEN */
.book-section-pro .book-image {
  flex: 1;
  text-align: center;
}

.book-section-pro .book-image img {
  max-width: 420px;
  width: 100%;
  opacity: 0.95;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* CONTENIDO */
.book-section-pro .book-content {
  flex: 1;
  color: #fff;
}

/* TAG */
.book-section-pro .book-tag {
  display: inline-block;
  background: rgba(243,156,18,0.15);
  color: #f39c12;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 22px;
  margin-bottom: 10px;
}

/* TITULOS */
.book-section-pro .book-content h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.book-section-pro .book-content h4 {
  font-size: 18px;
  color: #f39c12;
  margin-bottom: 15px;
}

/* TEXTO */
.book-section-pro .book-content p {
  color: #cbd5e1;
  margin-bottom: 20px;
}

/* FEATURES TEXTO */
.book-section-pro .book-features div {
  margin-bottom: 6px;
}

/* ICONOS FEATURES */
.book-section-pro .book-features-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.book-section-pro .book-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.book-section-pro .book-feature i {
  color: #f39c12;
}

/* CTA (BOTON + PAGO) */
.book-section-pro .book-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* BOTON */
.book-section-pro .book-btn {
  padding: 12px 25px;
  background: #f39c12;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

/* PAGO INLINE */
.book-section-pro .book-payment-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #cbd5e1;
}

.book-section-pro .book-payment-inline i {
  color: #22c55e;
}

.book-section-pro .book-payment-inline img {
  height: 20px;
  width: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .book-section-pro .book-container {
    flex-direction: column;
    text-align: center;
  }

  .book-section-pro .book-features-icons {
    grid-template-columns: 1fr;
  }
}
/* ===== HOVER LIBRO ===== */
.book-section-pro .book-image img {
  max-width: 320px;
  width: 100%;
  opacity: 0.95;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: transform 0.4s ease, filter 0.4s ease; /* 🔥 clave */
  cursor: pointer;
}

.book-section-pro .book-image img:hover {
  transform: translateY(-10px) scale(1.05);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.7));
}

/* ===== BOTÓN ===== */
.book-section-pro .book-btn {
  padding: 12px 25px;
  background: #f39c12;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease; /* 🔥 clave */
}

.book-section-pro .book-btn:hover {
  background: #d87f0a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(243,156,18,0.4);
}

/* ===== ICONOS FEATURES ===== */
.book-section-pro .book-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s ease; /* 🔥 clave */
}

.book-section-pro .book-feature:hover {
  transform: translateY(-3px);
  color: #ffffff;
}

/* ===== PAGO LOGOS ===== */
.book-section-pro .book-payment-inline img {
  height: 20px;
  width: auto;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.book-section-pro .book-payment-inline img:hover {
  opacity: 1;
  transform: scale(1.1);
}


/* ===== Estilos para la sección de testimonios con fotos ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.testimonials-carousel {
  padding: 80px 20px;
   background: linear-gradient(
    180deg,
    #c2e39d 0%,
    #eaf5dc 50%,
    #c2e39d 100%
  );
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

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

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #4a4a4a;          /* Gris perlado oscuro */
  margin-bottom: 15px;
  font-weight: 300;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.08); /* Sombra sutil */
}

.section-header p {
  font-size: 1.3rem;
  color: #6b6b6b;          /* Gris perlado medio para subtítulo */
}

.section-header p span {
  background: linear-gradient( #537380);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Carrusel Container */
.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 30px;
  animation: scroll 20s linear infinite;
  width: max-content;
}

.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Slide */
.carousel-slide {
  flex: 0 0 300px;
}

/* Foto Testimonial */
.testimonial-photo {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.testimonial-photo:hover {
  transform: scale(1.05);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.testimonial-photo:hover img {
  filter: brightness(0.7);
}

/* Instagram Link Central */
.instagram-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  text-decoration: none;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}

.testimonial-photo:hover .instagram-link {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.instagram-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  border: 4px solid white;
  transition: transform 0.3s ease;
}

.instagram-circle:hover {
  transform: scale(1.1);
}

.instagram-circle i {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 5px;
}

.instagram-circle span {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Info de la foto */
.photo-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.testimonial-photo:hover .photo-info {
  transform: translateY(0);
  opacity: 1;
}

.photo-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.photo-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

/* Indicadores */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

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

.indicator.active {
  background: white;
  width: 35px;
  border-radius: 6px;
}

.indicator:hover {
  background: white;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .carousel-slide {
    flex: 0 0 250px;
  }
  
  .testimonial-photo {
    height: 250px;
  }
  
  .instagram-circle {
    width: 100px;
    height: 100px;
  }
  
  .instagram-circle i {
    font-size: 2rem;
  }
}



/* ============================================
   SECCIÓN ROF - DISEÑO ELEGANTE
   ============================================ */

.rof-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  position: relative;
  overflow: hidden;
}

/* Elementos decorativos de fondo sutiles */
.rof-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.rof-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(103, 58, 183, 0.02) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   HEADER DE SECCIÓN
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  display: inline-block;

  font-size: 36px;   
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;

  text-shadow: 
    0 2px 4px rgba(0,0,0,0.6),
    0 6px 12px rgba(0,0,0,0.5);
}
  margin-bottom: 25px;
  padding: 8px 20px;
  background: rgba(139, 195, 74, 0.08);
  border-radius: 50px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 300;
  color: #2c3e50;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-title::after {
  content: 'ROF';
  font-weight: 600;
  color: #673ab7;
  margin-left: 10px;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8bc34a, transparent);
}

.title-divider i {
  color: #673ab7;
  font-size: 1.5rem;
  opacity: 0.6;
}

/* ============================================
   IMAGEN CON EFECTOS PREMIUM
   ============================================ */
.image-wrapper {
  position: relative;
  padding: 20px;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(103, 58, 183, 0.1) 0%,
    transparent 50%,
    rgba(139, 195, 74, 0.1) 100%
  );
  pointer-events: none;
}

.image-frame:hover {
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.03);
}

.image-frame:hover img {
  transform: scale(1.05);
}

/* Badge flotante */
.floating-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: linear-gradient(135deg, #673ab7 0%, #8e24aa 100%);
  color: white;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(103, 58, 183, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.floating-badge i {
  font-size: 1.8rem;
}

.floating-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* ============================================
   CONTENIDO DE TEXTO
   ============================================ */
.content-wrapper {
  padding-left: 20px;
}

.content-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.3;
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #999999;
  margin-bottom: 30px;
  font-weight: 400;
}

.highlight {
  color: #999999;
  font-weight: 600;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(139, 195, 74, 0.2);
  z-index: -1;
  border-radius: 3px;
}

/* Grid de características */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 35px 0;
}

.feature-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(139, 195, 74, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 0.9rem;
  color: #7f8c8d;
  line-height: 1.6;
  margin: 0;
}

/* Bloque de filosofía */
.philosophy-block {
  margin: 40px 0;
  position: relative;
}

.philosophy-block blockquote {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-left: 4px solid #66FF66;
  padding: 30px 35px;
  border-radius: 0 15px 15px 0;
  position: relative;
  margin: 0;
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: #673ab7;
  opacity: 0.2;
}

.philosophy-block p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #5a6c7d;
  font-style: italic;
  margin: 0;
  padding-left: 20px;
}

/* Bloque de transformación */
.transformation-block {
  margin-top: 35px;
  padding: 10px;
  background: linear-gradient(135deg, #66FF66 0%, #009933 100%);
  border-radius: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.transformation-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.transformation-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.95;
}

.transformation-text strong {
  color: #c5e1a5;
  font-weight: 600;
}

.mantra {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding-top: 6px;
  
}

.mantra span {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #E0E0E0;
}

.mantra .separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .rof-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .content-wrapper {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .floating-badge {
    right: 10px;
    bottom: -15px;
    padding: 15px 20px;
  }
  
  .mantra {
    flex-direction: column;
    gap: 10px;
  }
  
  .mantra .separator {
    display: none;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .content-title {
    font-size: 1.4rem;
  }
  
  .feature-item {
    flex-direction



/* Líneas divisorias en verde degradado */
.divider-line {
  background: linear-gradient(90deg, transparent, #a8e6cf 50%, transparent);
  height: 2px;
  width: 80px;
  display: inline-block;
  vertical-align: middle;
}

/* Marco de imagen con borde verde degradado */
.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.frame-border {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 24px;
  background: linear-gradient(135deg, #d4f1d4 0%, #a8e6cf 50%, #7fcdbb 100%);
  z-index: -1;
  opacity: 0.6;
}

/* Recuadros de características con verde tenue */
.feature-item {
  background: linear-gradient(135deg, rgba(212, 241, 212, 0.3) 0%, rgba(168, 230, 207, 0.2) 100%);
  border: 1px solid rgba(127, 205, 187, 0.3);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: linear-gradient(135deg, rgba(212, 241, 212, 0.5) 0%, rgba(168, 230, 207, 0.4) 100%);
  transform: translateY(-5px);
}

/* Iconos con fondo verde degradado */
.feature-icon {
  background: linear-gradient(135deg, #d4f1d4 0%, #a8e6cf 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d6a4f;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(127, 205, 187, 0.3);
}

/* Bloque de filosofía con borde verde */
.philosophy-block blockquote {
  border-left: 4px solid #a8e6cf;
  background: linear-gradient(90deg, rgba(212, 241, 212, 0.2) 0%, transparent 100%);
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
}

/* Mantra con separadores verdes */
.mantra .separator {
  color: #7fcdbb;
  margin: 0 0.5rem;
}

/* Highlight en texto */
.highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(168, 230, 207, 0.4) 60%);
  padding: 0 4px;
  color: #2d6a4f;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
  .image-wrapper {
    position: relative !important;
    top: 0 !important;
    margin-bottom: 2rem;
  }
  
  .col-lg-4, .col-lg-8 {
    width: 100%;
  }
}

.small-icon {
    font-size: 0.8em;
    margin-right: 8px;
    vertical-align: middle;
}

/* ============================================
   FIX ABSOLUTO - ELIMINA BLANCO DEFINITIVAMENTE
============================================ */

/* Fondo global oscuro */
body {
  background: #1a1a1f !important;
  position: relative;
}

/* El footer queda por encima */
#footer {
  position: relative;
  z-index: 2;
}

/* 🔥 PARCHE DEFINITIVO */
body::after {
  content: "";
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200vh; /* cubre TODO lo que sobra */
  background: #1a1a1f;
  z-index: 1;
  pointer-events: none;
}

/* ============================================
   SUBTITULOS
============================================ */
.section-subtitle {
  color: #ffffff;
  font-size: 64px;       /* tamaño grande tipo subtítulo */
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;

  text-shadow: 
    0 2px 4px rgba(0,0,0,0.3),
    0 6px 12px rgba(0,0,0,0.25);
}

.humanos-badge{
  display:inline-block !important;
  margin-top:18px !important;
  padding:12px 30px !important;

  background:linear-gradient(135deg,#1A4967,#2f6d97) !important;

  color:#ffffff !important;

  font-size:0.78rem !important;
  font-weight:800 !important;
  font-family:'Poppins',sans-serif !important;

  letter-spacing:2px !important;
  text-transform:uppercase !important;

  border-radius:60px !important;

  box-shadow:0 10px 28px rgba(26,73,103,0.30) !important;

  animation:pulseHumanos 2.5s infinite !important;
}

@keyframes pulseHumanos{

  0%{
    transform:scale(1);
    box-shadow:0 0 0 rgba(26,73,103,0.35);
  }

  50%{
    transform:scale(1.05);
    box-shadow:0 0 30px rgba(47,109,151,0.45);
  }

  100%{
    transform:scale(1);
    box-shadow:0 0 0 rgba(26,73,103,0.35);
  }
}
---------------------------------------

:root {
            --primary-gold: #c5a059;
            --dark-bg: #1a1a1a;
            --card-bg: #ffffff;
            --text-main: #333333;
            --text-light: #666666;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 40px 20px;
            display: flex;
            justify-content: center;
        }

        .container {
            max-width: 1200px;
            width: 100%;
        }

        .header {
            text-align: center;
            margin-bottom: 50px;
        }

        .header h1 {
            font-weight: 300;
            letter-spacing: 2px;
            color: var(--dark-bg);
            text-transform: uppercase;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .pricing-card {
            background: var(--card-bg);
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border-top: 4px solid transparent;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Animación Sencilla al pasar el cursor */
        .pricing-card:hover {
            transform: translateY(-10px);
            border-top: 4px solid var(--primary-gold);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .pricing-card h3 {
            font-size: 1.2rem;
            color: var(--dark-bg);
            margin-bottom: 15px;
            min-height: 3.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pack-info {
            color: var(--primary-gold);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .price-box {
            margin-bottom: 25px;
            padding: 15px 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .price-ars {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-bg);
            display: block;
        }

        .price-usd {
            font-size: 1.1rem;
            color: var(--text-light);
        }

        .payment-methods {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .payment-methods strong {
            color: var(--dark-bg);
            display: block;
            margin-top: 10px;
        }

        .btn-contact {
            margin-top: auto;
            padding: 12px 25px;
            background-color: var(--dark-bg);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .pricing-card:hover .btn-contact {
            background-color: var(--primary-gold);
        }

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

/* ============================================
 ARANCELES 
 ============================================
    #mis-aranceles-unicos {
        padding: 60px 0;
        background-color: #f8f9fa; /* Un gris muy clarito para que resalten las cajas */
    }
    
    #mis-aranceles-unicos .titulo-principal {
        text-align: center;
        color: #1a1a1a;
        font-family: 'Raleway', sans-serif; /* O la que use tu sitio */
        margin-bottom: 40px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    #mis-aranceles-unicos .grid-precios {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    #mis-aranceles-unicos .tarjeta-precio {
        background: #ffffff !important;
        width: 320px;
        padding: 40px 30px;
        border-radius: 15px;
        border: 1px solid #e0e0e0;
        border-top: 6px solid #d4d4d4; /* Gris base */
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
        display: flex;
        flex-direction: column;
    }

    /*ANIMACIÓN */
    #mis-aranceles-unicos .tarjeta-precio:hover {
        transform: translateY(-15px) !important;
        border-top: 6px solid #c5a059 !important; /* Dorado al pasar cursor */
        box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    }

    #mis-aranceles-unicos .tarjeta-precio h3 {
        font-size: 1.1rem;
        color: #111;
        margin-bottom: 20px;
        line-height: 1.4;
        min-height: 60px;
    }

    #mis-aranceles-unicos .pack {
        color: #c5a059;
        font-weight: 800;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    #mis-aranceles-unicos .precio-box {
        padding: 20px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-bottom: 20px;
    }

    #mis-aranceles-unicos .ars {
        font-size: 1.8rem;
        font-weight: 800;
        color: #1a1a1a;
        display: block;
    }

    #mis-aranceles-unicos .usd {
        color: #777;
        font-size: 1rem;
    }

    #mis-aranceles-unicos .pagos {
        font-size: 0.85rem;
        color: #666;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    #mis-aranceles-unicos .boton-arancel {
        margin-top: auto;
        background: #1a1a1a;
        color: #fff !important;
        padding: 12px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    #mis-aranceles-unicos .tarjeta-precio:hover .boton-arancel {
        background: #c5a059;
    }