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: 800;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
.top-banner {
  font-size: 1.25rem;
}
}
@media (min-width: 1024px) {
.top-banner {
  font-size: 1.4rem;
}
}



/* Language Selector */
.language-wrapper {
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  padding: 10px 0px;
  margin-bottom: -40px;
}
.language-selector {
  position: relative;
  display: inline-block;
  font-size: 16px;
}
.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;
}




/* 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-bottom: 20px;
  font-weight: 700;
}
@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: 28px;
  height: 28px;
  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;
}
.btn-whatsapp-multiline .line2 {
  font-size: 21.6px;
  opacity: 0.75;
  font-weight: 400;
}
@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;
}





/* 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: #2e2e2e;
}
/* Section title (h2) */
.text-block h2 {
  font-size: 2.8rem; 
  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: 1.5;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .text-block p {
    font-size: 1.3rem; 
  }
}



/* Guarantee Section */
.guarantee-section {
  background-color: #dfe1e2; 
  padding: 40px 8vw;
  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.3rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.guarantee-image {
  flex: 0 0 auto;
  text-align: center;
}
.guarantee-image img {
  width: 22.5rem;
  max-width: 100%;
  height: auto;
  margin-left: 35px;
}
@media (max-width: 768px) {
  .guarantee-image img {
    width: 90%;
    margin-left: 0px;
  }
}




/* 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 */
.section#book {
  background-color: #bfbfbf;
  margin-bottom: 0;
  padding-bottom: 0;
}
.pricing-wrapper {
  padding: 40px 8vw;
  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: 30px;
  justify-items: center;
}
.pricing-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 24px;
  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;
  }
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.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.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}
.price-unit {
  font-size: 0.9rem;
  color: #555;
  margin-left: 6px;
}
.original-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
}
.feature-list {
  text-align: left;
  padding-left: 0;
  list-style: none;
  margin: 20px 0;
}
.feature-item {
  margin-bottom: 12px;
  position: relative;
  padding-left: 32px;
  font-size: 1.15rem;
}
.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: Open Sans, 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;
}
.enroll-button .icon {
  width: 28x;
  height: 28px;
  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: 10px;
}
.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: 4vw;
    padding-right: 4vw;
  }
}
.calendly-section {
  background-color: #dfe1e2;        
}




/* 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;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.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.3rem;
  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;
  }
}




/* FAQ Section */
.container-faq {
  background-color: #022B3A;
  padding: 60px 8vw;
  color: #fff;
  text-align: center;
}
.section-title {
  font-size: 3.5em;
  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;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.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: 60px 8vw;
}
.container-contact .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .container-contact .section-title {
    font-size: 2.8rem;
  }
}
.container-contact p {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #333;
}
.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;   
}
.social-icons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.social-icons img {
  width: 60px;
  height: 60px;
  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 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);
}



/* Footer */
.footer-custom {
  background-color: #e7eaee;
  padding: 30px 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;
  }
}


/* 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;
}