/* Global Styles */
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background: white;
  scroll-behavior: smooth;
}
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}



/* Banner */
.top-banner {
  background: #FF4C1A;
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}
@media (min-width: 768px) {
.top-banner {
  font-size: 1.25rem;
}
}
@media (min-width: 1024px) {
.top-banner {
  font-size: 1.4rem;
}
}



/* --- WhatsApp Corner Floating Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 70px;
  height: 70px;
  background-color: #45c754;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: heartbeat 1.8s ease-in-out infinite;
}
.whatsapp-float .icon {
  width: 45px;
  height: 45px;
  transform: translateY(2px);
}
.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.15);
  box-shadow: 0 3px 0 #000;  
  filter: brightness(0.98);
}
/* --- Breathing animation --- */
@keyframes heartbeat {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.2); }
  40%  { transform: scale(0.95); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* --- Messenger Corner Floating Button --- */
.messenger-float {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: heartbeat 1.8s ease-in-out infinite;
}
.messenger-float .icon {
  width: 40px;
  height: 40px;
  transform: translateY(2px);
}
.messenger-float:hover {
  background-color: #ebebeb;
  transform: scale(1.15);
  box-shadow: 0 3px 0 #000;  
  filter: brightness(0.98);
}
/* --- Breathing animation --- */
@keyframes heartbeat {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.2); }
  40%  { transform: scale(0.95); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}


/* --- Phone Corner Floating Button --- */
.phone-float {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 70px;
  height: 70px;
  background-color: #FFEB00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease;
  animation: heartbeat 1.8s ease-in-out infinite;
}
.phone-float .icon {
  width: 40px;
  height: 40px;
  transform: translateY(2px);
}
.phone-float:hover {
  background-color: #FFCC00;
  transform: scale(1.15);
  box-shadow: 0 3px 0 #000;  
  filter: brightness(0.98);
}
/* --- Breathing animation --- */
@keyframes heartbeat {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.2); }
  40%  { transform: scale(0.95); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}
/* --- Tooltip for CTA --- */
.tooltip-call {
  position: fixed;        
  right: 120px;
  bottom: 35px;
  background: #fff;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  z-index: 2000;
  animation: tooltipFadeIn 0.5s ease forwards;
  animation-delay: 5s;
}
.tooltip-call::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
@keyframes tooltipFadeIn {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  60% {
    opacity: 0.8;
    transform: translateX(3px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Language Selector */
.language-wrapper {
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  padding: 10px 0px;
  margin-bottom: -50px;
}
.language-selector {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}
.language-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  font-size: 24px;
  font-family: 'Poppins', sans-serif;
  color: #676767;
  font-weight: 700;
}
.language-button img {
  width: 30px;
  margin-right: 8px;
}
.language-menu {
  right: 0;
  position: absolute;
  background-color: white;
  min-width: 140px;
  border: 1px solid #ddd;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  margin-top: 5px;
  text-align: left;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  will-change: transform;
}
.language-menu a {
  justify-content: flex-end;
  color: black;
  padding: 10px 20px 10px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 20px;
  transition: background-color 0.1s ease;
  will-change: transform;
}
.language-menu a img {
  width: 24px;
  margin-right: 8px;
}
.language-selector:hover .language-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.language-menu a:hover {
  background-color: #f5f5f5;
}
/* ===== Responsive adjustments for mobile (15% smaller) ===== */
@media (max-width: 600px) {
  .language-wrapper {
    padding: 8px 0;
    margin-bottom: -42px;
  }
  .language-button {
    font-size: 20px; /* was 24px */
    padding: 7px 10px; /* was 8px 12px */
  }
  .language-button img {
    width: 26px; /* was 30px */
    margin-right: 7px;
  }
  .language-menu {
    min-width: 120px; /* was 140px */
  }
  .language-menu a {
    font-size: 17px; /* was 20px */
    padding: 9px 17px; /* was 10px 20px */
  }
  .language-menu a img {
    width: 20px; /* was 24px */
    margin-right: 7px;
  }
}





/* Hero */
.hero {
  text-align: center;
  background: transparent;
  padding: 10px 20px 10px;
}
/* Hero title adjustments */
.main-title {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.2;
  color: #222;
  margin-bottom: 10px;
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.sub-title {
  font-size: 1.7rem;
  color: #676767;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 25px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}
@media (max-width: 370px) {
  .main-title {
    font-size: 2.5rem;
  }
  .sub-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
.main-title {
  font-size: 3.5rem;
}
.sub-title {
  font-size: 1.8rem;
}
}
@media (min-width: 1024px) {
.main-title {
  font-size: 4rem;
}
.sub-title {
  font-size: 2rem;
}
}
@media (max-width: 768px) {
  .main-title {
    font-weight: 900; /* bolder on all mobile */
  }
  .sub-title {
    font-weight: 800; /* optional: makes subtitles stand out too */
  }
}
.section {
  text-align: center;
  background: white;
  padding: 20px;
  margin-bottom: 20px;
}
.section h2 {
  font-size: 26px;
  max-width: 500px;
  margin: auto;
  line-height: 1.4;
}



/* Mou Video Section */
.video iframe {
  width: 100%;
  max-width: 640px;
  height: 360px;
  border-radius: 12px;
  margin-top: 10px;
}



/* Video Horizontal */
.video-wide iframe {
  width: 100%;
  max-width: 640px;
  height: 360px;
  border-radius: 12px;
  margin: 20px auto;
  display: block;
}
@media (min-width: 1024px) {
  .video-wide iframe {
    max-width: 1056px;
    height: 594px;
  }
}
/* Pantallas pequeñas (móvil/tableta) */
@media (max-width: 1023px) {
  .video-wide {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
  }
  .video-wide iframe {
    position: absolute;
    top: 0;
    left: 5vw;
    right: 5vw;
    width: 90vw;
    height: 100%;
    max-width: none;
    border-radius: 12px;
    margin: 0;
  }
}



/* WhatsApp CTA Button */
.btn-whatsapp-multiline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #1899ff; 
  color: white;
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  margin: 0 auto 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  will-change: transform;
}
.btn-whatsapp-multiline .icon {
  width: 30px;
  height: 30px;
  position: relative;
  top: 5px;
}
.btn-whatsapp-multiline .text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.btn-whatsapp-multiline .line1 {
  font-weight: 700;
  font-size: 26.4px;
  font-family: 'Poppins', sans-serif;
}
.btn-whatsapp-multiline .line2 {
  font-size: 21.6px;
  opacity: 0.75;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}
@keyframes tiltBounce {
0% {
  transform: rotate(0deg);
}
25% {
  transform: rotate(-3deg) translateY(-2px);
}
50% {
  transform: rotate(3deg) translateY(-2px);
}
75% {
  transform: rotate(-2deg) translateY(-1px);
}
100% {
  transform: rotate(0deg);
}
}
.cta-animated {
  animation: tiltBounce 1.2s ease-in-out infinite;
}
.btn-whatsapp-multiline:hover,
.btn-whatsapp-multiline:focus-visible {
  transform: scale(1.03);
  box-shadow: 0 3px 0 #000;              
  filter: brightness(0.98);
  background-color: #4C9C00;
}

/* Messenger CTA Button */
.btn-messenger-multiline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #1899ff; 
  color: white;
  border-radius: 12px;
  padding: 18px 20px;
  text-decoration: none;
  margin: 0 auto 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  will-change: transform;
}
.btn-messenger-multiline .icon {
  width: 30px;
  height: 30px;
  position: relative;
  top: 5px;
}
.btn-messenger-multiline .text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.btn-messenger-multiline .line1 {
  font-weight: 700;
  font-size: 26.4px;
  font-family: 'Poppins', sans-serif;
}
.btn-messenger-multiline .line2 {
  font-size: 21.6px;
  opacity: 0.75;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}
@keyframes tiltBounce {
0% {
  transform: rotate(0deg);
}
25% {
  transform: rotate(-3deg) translateY(-2px);
}
50% {
  transform: rotate(3deg) translateY(-2px);
}
75% {
  transform: rotate(-2deg) translateY(-1px);
}
100% {
  transform: rotate(0deg);
}
}
.cta-animated {
  animation: tiltBounce 1.2s ease-in-out infinite;
}
.btn-messenger-multiline:hover,
.btn-messenger-multiline:focus-visible {
  transform: scale(1.03);
  box-shadow: 0 3px 0 #000;              
  filter: brightness(0.98);
  background-color: #005FCC;
}





/* Text Block Section */
.text-block {
  padding: 3.125rem 8vw;
}
.text-block .content {
  margin-left: 0;
  margin-right: 0;
  max-width: 700px;
}
/* Background color variants */
.text-block.dark {
  background-color: #555;
  color: #fff;
}
.text-block.light {
  background-color: #dfe1e2;
  color: #000000;
}
/* Section title (h2) */
.text-block h2 {
  font-size: 3rem; 
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  margin: 0 0 1.25rem 0;
  line-height: 1.3;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .text-block h2 {
    font-size: 2.2rem;
  }
}
/* Paragraphs */
.text-block p {
  font-size: 1.5rem; 
  line-height: 2;
  font-weight: 500;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 768px) {
  .text-block p {
    font-size: 1.3rem; 
  }
}
/* Odometer base */
.odometer{
  display:inline-flex;
  align-items:baseline;
  gap:.06em;
  font-variant-numeric:tabular-nums; /* fixed-width digits */
  font-weight: 700;
}
/* One column per digit */
.odometer .digit{
  position:relative;
  overflow:hidden;
  width:0.62em;   /* tune per font */
  height:1em;     /* one digit tall */
}
/* Vertical reel with rows */
.odometer .wheel{
  display:block;
  will-change:transform;
  transform:translateY(0);
  transition:transform 1.2s cubic-bezier(.22,.75,.2,1);
}
/* Each row height = 1em */
.odometer .wheel span{
  display:block;
  height:1em;
  line-height:1em;
}
/* Static chars like $, commas, dots */
.odometer .static{display:inline-block;}
.odometer .sep{width:.25em;text-align:center;}




/* Guarantee Section */
.guarantee-section {
  background-color: #dfe1e2; 
  padding: 10px 8vw 40px;
  color: #0a1f2e;
}
.guarantee-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.guarantee-text {
  flex: 1 1 500px;
  max-width: 600px;
}
.guarantee-text h2 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .guarantee-text h2 {
    font-size: 2.3rem; 
  }
}
.guarantee-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
/* Badge */
.guarantee {
  position: relative;
  width: 22.5rem;
  max-width: 100%;
  margin-left: 35px;
  display: inline-block;
  text-align: center;
}
.guarantee img { display:block; width:100%; height:auto; user-select:none; }
/* Fondo: el que gira */
.badge-bg{
  position: relative;
  z-index: 1;
  transform-origin: 50% 50%;
  will-change: transform;
  /* Variables por defecto (sin animación) */
  --spin-name: none;
  --spin-dur: 0s;
  --spin-ease: linear;
  --spin-count: 1;
  animation-name: var(--spin-name);
  animation-duration: var(--spin-dur);
  animation-timing-function: var(--spin-ease);
  animation-iteration-count: var(--spin-count);
  animation-fill-mode: both; /* mantiene el estado final cuando aplique */
}
/* Íconos fijos encima; no bloquean hover */
.badge-icons{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
/* REVEAL: 1 giro al entrar en viewport */
.guarantee.is-inview .badge-bg{
  --spin-name: spin-bg-reveal;
  --spin-dur: 1s;
  --spin-ease: cubic-bezier(.22,.61,.36,1);
  --spin-count: 1;
}
/* HOVER: 1 giro por cada entrada del mouse (no infinito) */
.guarantee:hover .badge-bg,
.guarantee.is-inview:hover .badge-bg{ /* hover gana aunque esté in-view */
  --spin-name: spin-bg-hover;
  --spin-dur: 1s;
  --spin-ease: linear;
  --spin-count: 1;
}
/* Keyframes distintos => siempre reinicia */
@keyframes spin-bg-reveal { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes spin-bg-hover  { from{transform:rotate(0)} to{transform:rotate(360deg)} }

@media (max-width:768px){
  .guarantee{ width:90%; margin-left:0; }
}
@media (prefers-reduced-motion: reduce){
  .guarantee.is-inview .badge-bg,
  .guarantee:hover .badge-bg { animation: none !important; }
}





/* Samples Lessons Section */ 
.zoom-logo {
  height: 5rem;
}
@media (max-width: 768px) {
  .zoom-logo {
    height: 4.5rem;
  }
}
@media (max-width: 480px) {
  .zoom-logo {
    height: 4.2rem;
  }
}
.carousel-container {
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: auto;
  position: relative;
}
input[type=radio] {
  display: none;
}
.carousel-cards {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-card {
  position: absolute;
  width: 60%;
  height: 100%;
  left: 0;
  right: 0;
  margin: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  z-index: 0;
}
.carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* Show the active and adjacent cards */
#item-1:checked ~ .carousel-cards #img-1,
#item-2:checked ~ .carousel-cards #img-2,
#item-3:checked ~ .carousel-cards #img-3,
#item-4:checked ~ .carousel-cards #img-4,
#item-5:checked ~ .carousel-cards #img-5,
#item-6:checked ~ .carousel-cards #img-6,
#item-7:checked ~ .carousel-cards #img-7,
#item-8:checked ~ .carousel-cards #img-8 {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
/* Left neighbor */
#item-2:checked ~ .carousel-cards #img-1,
#item-3:checked ~ .carousel-cards #img-2,
#item-4:checked ~ .carousel-cards #img-3,
#item-5:checked ~ .carousel-cards #img-4,
#item-6:checked ~ .carousel-cards #img-5,
#item-7:checked ~ .carousel-cards #img-6,
#item-8:checked ~ .carousel-cards #img-7,
#item-1:checked ~ .carousel-cards #img-8 {
  transform: translateX(-40%) scale(0.8);
  opacity: 0.4;
  z-index: 1;
}
/* Right neighbor */
#item-1:checked ~ .carousel-cards #img-2,
#item-2:checked ~ .carousel-cards #img-3,
#item-3:checked ~ .carousel-cards #img-4,
#item-4:checked ~ .carousel-cards #img-5,
#item-5:checked ~ .carousel-cards #img-6,
#item-6:checked ~ .carousel-cards #img-7,
#item-7:checked ~ .carousel-cards #img-8,
#item-8:checked ~ .carousel-cards #img-1 {
  transform: translateX(40%) scale(0.8);
  opacity: 0.4;
  z-index: 1;
}
/* Add overlay icon (invisible by default) */
.carousel-card::after {
  content: "🔍"; /* or use a background SVG/icon */
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 24px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 6px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  will-change: transform;
}
#item-1:checked ~ .carousel-cards #img-1::after,
#item-2:checked ~ .carousel-cards #img-2::after,
#item-3:checked ~ .carousel-cards #img-3::after,
#item-4:checked ~ .carousel-cards #img-4::after,
#item-5:checked ~ .carousel-cards #img-5::after,
#item-6:checked ~ .carousel-cards #img-6::after,
#item-7:checked ~ .carousel-cards #img-7::after,
#item-8:checked ~ .carousel-cards #img-8::after {
  opacity: 1;
  pointer-events: auto;
  cursor: zoom-in;
}
@media (max-width: 768px) {
  .carousel-card {
    width: 85%;
  }
  /* Active card remains centered */
  #item-1:checked ~ .carousel-cards #img-1,
  #item-2:checked ~ .carousel-cards #img-2,
  #item-3:checked ~ .carousel-cards #img-3,
  #item-4:checked ~ .carousel-cards #img-4,
  #item-5:checked ~ .carousel-cards #img-5,
  #item-6:checked ~ .carousel-cards #img-6,
  #item-7:checked ~ .carousel-cards #img-7,
  #item-8:checked ~ .carousel-cards #img-8 {
    transform: scale(1);
  }
  /* Recenter left neighbor */
  #item-2:checked ~ .carousel-cards #img-1,
  #item-3:checked ~ .carousel-cards #img-2,
  #item-4:checked ~ .carousel-cards #img-3,
  #item-5:checked ~ .carousel-cards #img-4,
  #item-6:checked ~ .carousel-cards #img-5,
  #item-7:checked ~ .carousel-cards #img-6,
  #item-8:checked ~ .carousel-cards #img-7,
  #item-1:checked ~ .carousel-cards #img-8 {
    transform: translateX(-25%) scale(0.8); /* Reduced from -40% */
  }
  /* Recenter right neighbor */
  #item-1:checked ~ .carousel-cards #img-2,
  #item-2:checked ~ .carousel-cards #img-3,
  #item-3:checked ~ .carousel-cards #img-4,
  #item-4:checked ~ .carousel-cards #img-5,
  #item-5:checked ~ .carousel-cards #img-6,
  #item-6:checked ~ .carousel-cards #img-7,
  #item-7:checked ~ .carousel-cards #img-8,
  #item-8:checked ~ .carousel-cards #img-1 {
    transform: translateX(25%) scale(0.8); /* Reduced from 40% */
  }
}

/* French Version – Carousel with 5 Items */
.carousel-container-fr {
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: auto;
  position: relative;
}
.carousel-cards-fr {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-cards-fr .carousel-card {
  position: absolute;
  width: 60%;
  height: 100%;
  left: 0;
  right: 0;
  margin: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  z-index: 0;
}
.carousel-cards-fr .carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
#item-1:checked ~ .carousel-cards-fr #img-1,
#item-2:checked ~ .carousel-cards-fr #img-2,
#item-3:checked ~ .carousel-cards-fr #img-3,
#item-4:checked ~ .carousel-cards-fr #img-4,
#item-5:checked ~ .carousel-cards-fr #img-5 {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
#item-2:checked ~ .carousel-cards-fr #img-1,
#item-3:checked ~ .carousel-cards-fr #img-2,
#item-4:checked ~ .carousel-cards-fr #img-3,
#item-5:checked ~ .carousel-cards-fr #img-4,
#item-1:checked ~ .carousel-cards-fr #img-5 {
  transform: translateX(-40%) scale(0.8);
  opacity: 0.4;
  z-index: 1;
}
#item-1:checked ~ .carousel-cards-fr #img-2,
#item-2:checked ~ .carousel-cards-fr #img-3,
#item-3:checked ~ .carousel-cards-fr #img-4,
#item-4:checked ~ .carousel-cards-fr #img-5,
#item-5:checked ~ .carousel-cards-fr #img-1 {
  transform: translateX(40%) scale(0.8);
  opacity: 0.4;
  z-index: 1;
}
.carousel-cards-fr .carousel-card::after {
  content: "🔍";
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 24px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 6px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  will-change: transform;
}
#item-1:checked ~ .carousel-cards-fr #img-1::after,
#item-2:checked ~ .carousel-cards-fr #img-2::after,
#item-3:checked ~ .carousel-cards-fr #img-3::after,
#item-4:checked ~ .carousel-cards-fr #img-4::after,
#item-5:checked ~ .carousel-cards-fr #img-5::after {
  opacity: 1;
  pointer-events: auto;
  cursor: zoom-in;
}
@media (max-width: 768px) {
  .carousel-cards-fr .carousel-card {
    width: 85%;
  }
  /* Active card remains centered */
  #item-1:checked ~ .carousel-cards-fr #img-1,
  #item-2:checked ~ .carousel-cards-fr #img-2,
  #item-3:checked ~ .carousel-cards-fr #img-3,
  #item-4:checked ~ .carousel-cards-fr #img-4,
  #item-5:checked ~ .carousel-cards-fr #img-5 {
    transform: scale(1);
  }
  /* Recenter left neighbor */
  #item-2:checked ~ .carousel-cards-fr #img-1,
  #item-3:checked ~ .carousel-cards-fr #img-2,
  #item-4:checked ~ .carousel-cards-fr #img-3,
  #item-5:checked ~ .carousel-cards-fr #img-4,
  #item-6:checked ~ .carousel-cards-fr #img-5 {
    transform: translateX(-25%) scale(0.8); /* Reduced from -40% */
  }
  /* Recenter right neighbor */
  #item-1:checked ~ .carousel-cards-fr #img-2,
  #item-2:checked ~ .carousel-cards-fr #img-3,
  #item-3:checked ~ .carousel-cards-fr #img-4,
  #item-4:checked ~ .carousel-cards-fr #img-5,
  #item-8:checked ~ .carousel-cards-fr #img-1 {
    transform: translateX(25%) scale(0.8); /* Reduced from 40% */
  }
}

/* German Version – Carousel with 6 Items */
.carousel-container-de {
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: auto;
  position: relative;
}
.carousel-cards-de {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-cards-de .carousel-card {
  position: absolute;
  width: 60%;
  height: 100%;
  left: 0;
  right: 0;
  margin: auto;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  z-index: 0;
}
.carousel-cards-de .carousel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
#item-1:checked ~ .carousel-cards-de #img-1,
#item-2:checked ~ .carousel-cards-de #img-2,
#item-3:checked ~ .carousel-cards-de #img-3,
#item-4:checked ~ .carousel-cards-de #img-4,
#item-5:checked ~ .carousel-cards-de #img-5,
#item-6:checked ~ .carousel-cards-de #img-6 {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
#item-2:checked ~ .carousel-cards-de #img-1,
#item-3:checked ~ .carousel-cards-de #img-2,
#item-4:checked ~ .carousel-cards-de #img-3,
#item-5:checked ~ .carousel-cards-de #img-4,
#item-6:checked ~ .carousel-cards-de #img-5,
#item-1:checked ~ .carousel-cards-de #img-6 {
  transform: translateX(-40%) scale(0.8);
  opacity: 0.4;
  z-index: 1;
}
#item-1:checked ~ .carousel-cards-de #img-2,
#item-2:checked ~ .carousel-cards-de #img-3,
#item-3:checked ~ .carousel-cards-de #img-4,
#item-4:checked ~ .carousel-cards-de #img-5,
#item-5:checked ~ .carousel-cards-de #img-6,
#item-6:checked ~ .carousel-cards-de #img-1 {
  transform: translateX(40%) scale(0.8);
  opacity: 0.4;
  z-index: 1;
}
.carousel-cards-de .carousel-card::after {
  content: "🔍";
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 24px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 6px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  will-change: transform;
}
#item-1:checked ~ .carousel-cards-de #img-1::after,
#item-2:checked ~ .carousel-cards-de #img-2::after,
#item-3:checked ~ .carousel-cards-de #img-3::after,
#item-4:checked ~ .carousel-cards-de #img-4::after,
#item-5:checked ~ .carousel-cards-de #img-5::after,
#item-6:checked ~ .carousel-cards-de #img-6::after {
  opacity: 1;
  pointer-events: auto;
  cursor: zoom-in;
}
@media (max-width: 768px) {
  .carousel-cards-de .carousel-card {
    width: 85%;
  }
  /* Active card remains centered */
  #item-1:checked ~ .carousel-cards-de #img-1,
  #item-2:checked ~ .carousel-cards-de #img-2,
  #item-3:checked ~ .carousel-cards-de #img-3,
  #item-4:checked ~ .carousel-cards-de #img-4,
  #item-5:checked ~ .carousel-cards-de #img-5,
  #item-6:checked ~ .carousel-cards-de #img-6 {
    transform: scale(1);
  }
  /* Recenter left neighbor */
  #item-2:checked ~ .carousel-cards-de #img-1,
  #item-3:checked ~ .carousel-cards-de #img-2,
  #item-4:checked ~ .carousel-cards-de #img-3,
  #item-5:checked ~ .carousel-cards-de #img-4,
  #item-6:checked ~ .carousel-cards-de #img-5,
  #item-7:checked ~ .carousel-cards-de #img-6 {
    transform: translateX(-25%) scale(0.8); /* Reduced from -40% */
  }
  /* Recenter right neighbor */
  #item-1:checked ~ .carousel-cards-de #img-2,
  #item-2:checked ~ .carousel-cards-de #img-3,
  #item-3:checked ~ .carousel-cards-de #img-4,
  #item-4:checked ~ .carousel-cards-de #img-5,
  #item-5:checked ~ .carousel-cards-de #img-6,
  #item-8:checked ~ .carousel-cards-de #img-1 {
    transform: translateX(25%) scale(0.8); /* Reduced from 40% */
  }
}




/* Pricing Section */
.currency-switcher{
  display:flex;
  gap:1.2rem;
  justify-content:center;
  margin:2rem 0 0rem
}
.currency-tab{
  border:1px solid #e5e7eb;
  border-radius:9999px;
  padding:.6rem 1rem;
  font-size: 1.2rem;
  font-weight:400;
  background:#fff;
  cursor:pointer;
  font-family: "Poppins", sans-serif;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    filter 0.25s ease;
  will-change: transform;
}
.currency-tab[aria-selected="true"]{
  box-shadow:0 2px 10px rgba(0,0,0,.08);
  background-color: #f8f9fa;
  transform: scale(1.03);
}
.currency-tab:hover,
.currency-tab:focus-visible {
  transform: scale(1.03);
  box-shadow: 0 3px 0 #000;
  filter: brightness(0.98);
  background-color: #f2f2f2;
}
@media (max-width: 385px){
  .currency-switcher{ gap: 0.7rem;}
  .currency-tab{ font-size: 1.1rem; }
}

.section#book {
  background-color: #dfe1e2;
  margin-bottom: 0;
  padding-bottom: 0;
}
.pricing-wrapper {
  padding: 40px 4vw;
  text-align: center;
}
.pricing-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
}
.pricing-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 22px;
  padding-top: 18px;
  padding-bottom: 18px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  transform-origin: center;
}
.pricing-card:hover,
.pricing-card:focus-within {
  transform: scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
/* Disable hover on mobile */
@media (max-width: 768px) {
  .pricing-card:hover {
    transform: none;
  }
}
/* Color del aro (ámbar) */
:root { --ring: #ffd166;  /* puedes usar #facc15 si prefieres Tailwind-amber */ }
/* Gold premium highlight with soft fading */
.pricing-card.is-featured {
  border: 2px solid #facc15; /* warm gold */
  box-shadow:
    0 0 0 3px rgba(250, 204, 21, 0.35),  /* soft golden glow close */
    0 0 20px 6px rgba(250, 204, 21, 0.15), /* medium halo fade */
    0 20px 40px rgba(0, 0, 0, 0.12);       /* regular shadow */
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.pricing-card.is-featured:hover,
.pricing-card.is-featured:focus-within {
  transform: scale(1.03);
  box-shadow:
    0 0 0 3px rgba(250, 204, 21, 0.45),
    0 0 25px 8px rgba(250, 204, 21, 0.2),
    0 22px 48px rgba(0, 0, 0, 0.16);
}
.pricing-card.is-featured .popular-tag {
  background: #fff7e6;
  color: #a76200;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px; /* Cambiar para las dos primeras Desktop */
}
.card-title {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
}
.popular-tag {
  background-color: #eef4ff;
  color: #0049d1;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
}
.price-container {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0px;
  color: #222;
  font-weight:550;
  font-family: "Poppins", sans-serif;
}
.price-unit {
  font-size: 1rem;
  color: #555;
  margin-left: 6px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.original-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
}
/* Precio tachado */
.old-price {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  opacity: 0.8;
}
.feature-list {
  text-align: left;
  padding-left: 0;
  list-style: none;
  margin: 20px 0; /* Cambiar para las dos primeras Desktop */
  margin-bottom: 5px;
}
.feature-item {
  margin-bottom: 12px;
  position: relative;
  padding-left: 32px;
  font-size: 1.1rem;
}
.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url('../icons/check.svg'); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.enroll-button {
  display: inline-flex;           /* Flexbox layout */
  align-items: center;            /* Vertical centering */
  justify-content: center;        /* Center horizontally */
  gap: 10px;                      /* More space between icon and text */
  background-color: #1899ff;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  cursor: pointer;
  color: white;
  width: 100%;
  animation: tiltBounce 1.8s ease-in-out infinite;
  animation-delay: 0s !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}
.pricing-card:nth-child(3) .enroll-button {
  background: linear-gradient(135deg, #d4af37, #f5d76e); /* gold gradient */
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.enroll-button .icon {
  width: 34px;
  height: 34px;
  position: relative;
}
.enroll-button:hover,
.enroll-button:focus-visible {
  transform: scale(1.03);
  box-shadow: 0 3px 0 #000;  
  filter: brightness(0.98);
}

.payment-info {
  text-align: center;
}
.methods-title {
  font-size: 16px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 5px;
}
.pay-methods {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.pay-methods .badge {
  height: 22px;      
  width: auto;      
  display: block;    
}
.pay-methods .badge:last-child {
  margin-left: 6px;   
}
.pay-methods .badge.rotating {
  opacity: 1;
  transition: opacity .5s ease;
  will-change: transform;
}
.pay-methods .badge.rotating.fading {
  opacity: 0;
}
@media (max-width: 1023px) {
  .pricing-wrapper {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
.calendly-section {
  background-color: #bfbfbf;
  padding: 0px 0;         
}
@media (min-width: 1100px) {
  .pricing-card:nth-child(3) .card-header {
    margin-bottom: 20px; 
  }
  .pricing-card:nth-child(1) .price-container
  {
    margin-top: 10px; 
  }
  .pricing-card:nth-child(1) .feature-list{
    margin-top: 20px; 
  }
  .pricing-card:nth-child(2) .enroll-button{
    margin-top: 30px;
  }
  .pricing-card:nth-child(3) .enroll-button{
    margin-top: 80px; 
  }
  .pricing-card { 
    padding: 22px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media (min-width: 1100px) {
  html[lang="es"] .pricing-card:nth-child(2) .feature-list{
    margin-bottom: 20px; 
  }
  html[lang="es"] .pricing-card:nth-child(3) .feature-list{
    margin-bottom: -40px; 
  }
  html[lang="fr"] .pricing-card:nth-child(2) .feature-list{
    margin-bottom: 60px; 
  }
  html[lang="de"] .pricing-card:nth-child(3) .feature-list{
    margin-bottom: -50px; 
  }
}
.limited-spots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  margin-bottom: -5px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #e63946; /* red accent */
  animation: pulse 1.8s ease-in-out infinite;
}
@media (max-width: 375px) {
  .enroll-button {
    font-size: calc(20px * 0.9); 
  }

  .limited-spots {
    font-size: calc(1.1rem * 0.9);
  }
}
@media (max-width: 350px) {
  .enroll-button {
    font-size: calc(20px * 0.85); 
  }

  .limited-spots {
    font-size: calc(1.1rem * 0.85);
  }
}
.warning-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.disclaimer {
  margin-top: 25px; 
  margin-bottom: -10px;
  text-align: left;
  font-size: 1.05rem;
  color: #444;
  opacity: 0.85;
  line-height: 1.35;
}





/* Testimonials Section */
.flag-icon {
  height: 30px;
  width: auto;
  margin-left: 6px;
  vertical-align: middle;
  border-radius: 2px;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
}
.flag-group {
  white-space: nowrap;
}
.testimonial-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  padding-top: 0px; 
  padding-bottom: 5px; 
  margin: 0px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  transform-origin: center;
  will-change: transform;
}
.testimonial-item:hover,
.testimonial-item:focus-visible {
  transform: scale(1.02);               
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.client-name {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.client-designation {
  color: #777;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.client-text {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .client-text {
    font-size: 1.1rem;
  }
}
.testimonials-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr; /* 1 column by default */
  padding: 0 8vw;
}
@media (min-width: 768px) {
.testimonials-grid {
  grid-template-columns: 1fr 1fr; /* 2 columns on medium+ screens */
}
}
@media (max-width: 1023px) {
  .testimonials-grid {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}




/* Global Reach Section */
.global-reach-description {
  background-color: #dfe1e2; 
  padding: 20px 8vw;
  color: #0a1f2e;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
}
.global-reach-description p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 10px;
}
.global-reach-description strong {
  color: #000;
  font-weight: 600;
}
/* Apply horizontal margins only on desktops */
@media (min-width: 1024px) {
  .section.reviews {
    padding-left: 8vw;
    padding-right: 8vw;
  }
}
/* Foto Jon */
.global-reach-description {
  position: relative;
  background-color: #dfe1e2; 
  padding: 20px 8vw;
  color: #0a1f2e;
  margin: 0 auto;
  text-align: left;
  overflow: hidden;
  padding-bottom: 25px;
  margin-bottom: 0;
}
.about-image {
  position: absolute;
  top: 0px;       /* Ajusta para subir o bajar */
  left: 680px;         /* Ajusta para centrar más */
  z-index: 0;      /* DETRÁS del texto */
  opacity: 1;
}
.about-image img {
  width: 650px;    /* Tamaño en escritorio */
  height: auto;
}
.global-reach-description p,
.global-reach-description h1 {
  position: relative;
  z-index: 1; /* Encima de la imagen */
}
/* Para móviles */
@media (max-width: 768px) {
  .global-reach-description {
    padding-bottom: 0;
  }
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center; /* Optional: center text if desired */
  }
  .about-text {
    padding-right: 0;
    width: 100%;
  }
  .about-image {
    position: static;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .about-image img {
    max-width: 380px;
    width: 100%;
    height: auto;
  }
}


/* Jon image: custom reveal from bottom */
/* Slide-up reveal (no fading) */
.about-image[data-reveal="from-bottom"] {
  transform: translateY(400px); /* start lower */
  transition:
    transform 0.5s cubic-bezier(.22,.61,.36,1) var(--reveal-delay, 0ms);
}
@media (max-width: 768px) {
  .about-image[data-reveal="from-bottom"] {
    transform: translateY(330px); /* start lower on mobile */
  }
}
.about-image.is-inview[data-reveal="from-bottom"] {
  transform: translateY(0); /* slide up to normal position */
}
/* Accessibility: disable motion if requested */
@media (prefers-reduced-motion: reduce) {
  .about-image[data-reveal="from-bottom"],
  .about-image.is-inview[data-reveal="from-bottom"] {
    transform: none !important;
    transition: none !important;
  }
}





/* FAQ Section */
.container-faq {
  background-color: #022B3A;
  padding: 15px 8vw;
  color: #fff;
  text-align: center;
}
.section-title {
  font-size: 4em;
  font-weight: 800;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}
.faq-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr; /* Default: 1 column */
}
@media (min-width: 768px) {
.faq-grid {
  grid-template-columns: 1fr 1fr; /* 2 columns on medium+ screens */
}
}
.faq-card {
  background: #ffffff;
  color: #000;
  border-radius: 15px;
  padding: 25px 30px;
  padding-top: 0px; 
  padding-bottom: 20px; 
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  transform-origin: center;
  will-change: transform;
}
.faq-card:hover,
.faq-card:focus-visible {
  transform: scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.faq-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: 700;
}
.faq-card p {
  font-size: 1.1em;
  margin: 0;
}
.faq-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 4px;
  margin-top: -4px;
}



/* Contact Section */
.container-contact {
  background-color: #e7eaee; /* Gris claro de tu imagen */
  text-align: center;
  padding: 15px 8vw;
}
.container-contact .section-title {
  font-size: 4rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 30px;
}
.container-contact p {
  font-size: 1.35rem;
  margin: 20px 0;
  color: #333;
  font-family: 'Poppins', sans-serif;
}
.container-contact a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
  will-change: transform; 
}
.container-contact a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px; 
  text-underline-offset: 4px;   
}
/* Mobile: añade más hueco debajo de Email/Phone */
@media (max-width: 768px) {
  .container-contact p:last-of-type {
    margin-bottom: 40px; /* 👈 ajusta este valor a tu gusto */
  }
}
/* Estilo por defecto: mobile (2 filas) */
.social-icons-row {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin-top: 20px;
}
/* En escritorio unir todo en una sola fila */
@media (min-width: 500px) {
  .row-1,
  .row-2 {
    display: inline-flex;   /* se comportan como uno solo */
    margin-top: 20px;
  }
  /* contenedor "padre" para alinear ambas filas */
  .row-1 {
    margin-right: 20px;     /* espacio entre los grupos */
  }
}
.social-icons-row img {
  width: 75px;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  will-change: transform;
}
/* Hover effect (puedes cambiar el color aquí) */
.social-icons-row a:hover img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(97%) saturate(2704%) hue-rotate(174deg) brightness(93%) contrast(95%);
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .container-contact .section-title {
    font-size: 2.8rem;
  }
  .container-contact p {
    font-size: 1.25rem;
  }
  .social-icons-row img {
    width: 70px;
    height: auto;
  }
}




/* Footer */
.footer-custom {
  background-color: #e7eaee;
  padding: 20px 8vw;
  text-align: center;
  font-size: 1.2rem;
  color: #333;
}
.footer-custom p {
  margin: 8px;
  line-height: 1.5;
}
.footer-custom .separator {
  margin: 0 8px;
  color: #666;
}
.footer-custom a {
  color: inherit;            
  text-decoration: none;
  transition: text-decoration 0.3s ease;
  will-change: transform;    
}
.footer-custom a:hover {
  text-decoration: underline;  
}
@media screen and (max-width: 600px) {
  .footer-custom {
    font-size: 1.1rem;
  }
  .footer-custom .separator {
    margin: 0 3px;
    color: #666;
  }
}



/* ---------- Page-load entrance animations ---------- */
/* Accessibility: if user prefers reduced motion, disable our animations */
@media (prefers-reduced-motion: reduce) {
  .top-banner,
  .language-wrapper,
  .hero .main-title,
  .hero .sub-title,
  .phone-float,
  .messenger-float,
  .whatsapp-float { 
    animation: none !important; 
    transition: none !important; 
    opacity: 1 !important; 
    transform: none !important;
  }
}
/* Initial hidden states (before .is-ready is added) */
.top-banner,
.language-wrapper,
.hero .main-title,
.hero .sub-title,
.phone-float,
.messenger-float,
.whatsapp-float {
  opacity: 0;
}
/* Keep your existing hover/transitions & heartbeat; we'll just add an entrance */
.top-banner       { transform: translateY(-100%); }
.language-wrapper { transform: translateY(-10px); }
.hero .main-title { transform: translateY(12px) scale(0.98); }
.hero .sub-title  { transform: translateY(18px) scale(0.98); }
.phone-float   { transform: scale(0.6); }
.messenger-float   { transform: scale(0.6); }
.whatsapp-float   { transform: scale(0.6); }
/* When the page is ready, play the animations with a nice stagger */
.is-ready .top-banner       { animation: slideDownIn 600ms cubic-bezier(.2,.7,.2,1)   forwards;            }
.is-ready .language-wrapper { animation: fadeUpIn   450ms cubic-bezier(.2,.7,.2,1)   120ms forwards;      }
.is-ready .hero .main-title { animation: fadeUpIn   550ms cubic-bezier(.2,.7,.2,1)   220ms forwards;      }
.is-ready .hero .sub-title  { animation: fadeUpIn   550ms cubic-bezier(.2,.7,.2,1)   360ms forwards;      }
/* Let the button pop in, then continue with your existing heartbeat loop */
.is-ready .phone-float     { animation: popIn 420ms cubic-bezier(.2,.7,.2,1) 520ms forwards,
                                       heartbeat 1.8s ease-in-out 1200ms infinite; }
.is-ready .messenger-float  { animation: popIn 420ms cubic-bezier(.2,.7,.2,1) 520ms forwards,
                                       heartbeat 1.8s ease-in-out 1200ms infinite; }
.is-ready .whatsapp-float   { animation: popIn 420ms cubic-bezier(.2,.7,.2,1) 520ms forwards,
                                       heartbeat 1.8s ease-in-out 1200ms infinite; }
/* Keyframes */
@keyframes slideDownIn {
  0%   { opacity: 0; transform: translateY(-100%); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUpIn {
  0%   { opacity: 0; transform: translateY(18px) scale(0.98); filter: blur(2px); }
  100% { opacity: 1; transform: translateY(0)    scale(1);    filter: blur(0); }
}
@keyframes popIn {
  0%   { opacity: 0; transform: scale(0.6); }
  60%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
/* Make the language UI sit above hero/title/video */
.language-wrapper,
.language-selector {
  position: relative;
  z-index: 3000;     /* higher than anything in hero */
}
.language-menu {
  position: absolute; /* it already is, but keep for clarity */
  z-index: 3001;      /* slightly above the button/wrapper */
}



/* ===== Scroll reveal (composable with hover) ===== */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
/* Base hidden state */
[data-reveal]{
  /* reveal transform pieces */
  --reveal-x: 0px;
  --reveal-y: 22px;
  --reveal-scale: .98;
  /* hover piece (default no extra scale) */
  --hover-scale: 1;
  opacity: 0;
  filter: blur(2px);
  /* Compose reveal + hover in one transform */
  transform:
    translate(var(--reveal-x), var(--reveal-y))
    scale(var(--reveal-scale))
    scale(var(--hover-scale));
  transition:
    opacity .45s cubic-bezier(.33,.99,.66,1) var(--reveal-delay, 0ms),
    transform .45s cubic-bezier(.33,.99,.66,1) var(--reveal-delay, 0ms),
    filter  .45s cubic-bezier(.33,.99,.66,1) var(--reveal-delay, 0ms);
  will-change: transform, opacity, filter;
}
/* Directions (set the initial reveal vector/scale) */
[data-reveal="up"]    { --reveal-x: 0px;  --reveal-y: 22px;  --reveal-scale: .98; }
[data-reveal="down"]  { --reveal-x: 0px;  --reveal-y:-22px;  --reveal-scale: .98; }
[data-reveal="left"]  { --reveal-x:-40px; --reveal-y: 0px;   --reveal-scale: .98; }
[data-reveal="right"] { --reveal-x: 40px; --reveal-y: 0px;   --reveal-scale: .98; }
[data-reveal="pop"]   { --reveal-x: 0px;  --reveal-y: 0px;   --reveal-scale: .94; }
/* Visible state: neutralize only the reveal part (do NOT set transform:none) */
.is-inview{
  opacity: 1;
  filter: none;
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-scale: 1;
}
/* --- FIX: evitar blur en elementos con hover-scale --- */
/* Cuando ya están visibles, liberamos el “will-change” para nitidez */
.is-inview {
  will-change: auto; /* 🔹 evita que Chrome mantenga la capa GPU borrosa */
}





/* Brevo Form */
@font-face {
  font-display: block;
  font-family: Roboto;
  src: url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff) format("woff")
}
@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 600;
  src: url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff) format("woff")
}
@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 700;
  src: url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2) format("woff2"), url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff) format("woff")
}
#sib-container input:-ms-input-placeholder {
  text-align: left;
  font-family: Helvetica, sans-serif;
  color: #c0ccda;
}
#sib-container input::placeholder {
  text-align: left;
  font-family: Helvetica, sans-serif;
  color: #c0ccda;
}
#sib-container textarea::placeholder {
  text-align: left;
  font-family: Helvetica, sans-serif;
  color: #c0ccda;
}
#sib-container a {
  text-decoration: underline;
  color: #2BB2FC;
}