/* ============================================================
   Opción Yo — Site Styles
   Base framework: Bootstrap 5
   Tokens y componentes base: css/base.css
   ============================================================ */

/* ---------- Header / Navbar ---------- */
.oyo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-gray-light);
  transform: translateY(0);
  transition: transform var(--ease-slide), box-shadow 0.3s ease;
}

.oyo-header--hidden {
  transform: translateY(-100%);
}

.oyo-header--scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border-bottom-color: transparent;
}

.oyo-navbar {
  background-color: var(--color-white);
  padding: 0;
}

.oyo-navbar-inner {
  height: 72px;
  padding-left: 24px;
  padding-right: 24px;
  transition: height 0.3s ease;
}

.oyo-header--scrolled .oyo-navbar-inner {
  height: 58px;
  /* 80% de 72px */
}

@media (min-width: 992px) {
  .oyo-navbar-inner {
    height: 88px;
    padding-left: 96px;
    padding-right: 96px;
  }

  .oyo-header--scrolled .oyo-navbar-inner {
    height: 70px;
    /* 80% de 88px */
  }
}

/* ---------- Logo ---------- */
.oyo-logo {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 2rem;
}

.oyo-logo img {
  display: block;
}

/* ---------- Nav links ---------- */
.oyo-nav-links {
  flex-direction: row;
  /* override Bootstrap's column default */
  gap: 1rem;
}

.oyo-nav-link {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  line-height: normal;
  white-space: nowrap;
  padding: 0 0.5rem;
  transition: color 0.2s ease;
}

.oyo-nav-link:hover {
  color: var(--color-blue);
}

/* ---------- CTA Buttons ---------- */
.oyo-cta-group {
  flex-shrink: 0;
}

/* ---------- Hamburger button ---------- */
.oyo-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.oyo-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate to X when open */
.oyo-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.oyo-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.oyo-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Sidebar overlay ---------- */
.oyo-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1040;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.oyo-sidebar-overlay.is-visible {
  display: block;
}

.oyo-sidebar-overlay.is-open {
  opacity: 1;
}

/* ---------- Sidebar drawer ---------- */
.oyo-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background-color: var(--color-white);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  z-index: 1050;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--ease-slide);
  overflow-y: auto;
}

.oyo-sidebar.is-open {
  transform: translateX(0);
}

/* Close button */
.oyo-sidebar-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--color-text);
  cursor: pointer;
  padding: 0;
  margin-bottom: 24px;
}

.oyo-sidebar-close:hover {
  color: var(--color-blue);
}

/* Sidebar nav links */
.oyo-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
}

.oyo-sidebar-links li {
  border-bottom: 1px solid var(--color-gray-light);
}

.oyo-sidebar-links li:first-child {
  border-top: 1px solid var(--color-gray-light);
}

.oyo-sidebar-links a {
  display: block;
  padding: 16px 0;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.oyo-sidebar-links a:hover {
  color: var(--color-blue);
}

/* Sidebar CTA (nav-link style items) */
.oyo-sidebar-cta {
  margin-top: 32px;
}

.oyo-sidebar-cta-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oyo-sidebar-cta-links li {
  border-bottom: 1px solid var(--color-gray-light);
}

.oyo-sidebar-cta-links li:first-child {
  border-top: 1px solid var(--color-gray-light);
}

.oyo-sidebar-cta-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.oyo-sidebar-cta-link:hover {
  color: var(--color-blue);
}

/* Login accordion submenu */
.oyo-sidebar-login-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.oyo-sidebar-login-submenu.is-open {
  max-height: 160px;
}

.oyo-sidebar-tests-submenu.is-open {
  max-height: 400px;
}

.oyo-sidebar-login-sublink {
  display: block;
  padding: 12px 0 12px 16px;
  font-size: 16px;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-top: 1px solid var(--color-gray-light);
  transition: color 0.2s ease;
}

.oyo-sidebar-login-sublink:hover {
  color: var(--color-blue);
}

/* ---------- Desktop nav dropdown (Test Gratuitos) ---------- */
.oyo-nav-dropdown {
  position: relative;
}

.oyo-nav-dropdown:hover .oyo-login-chevron {
  transform: rotate(180deg);
}

.oyo-nav-dropdown .oyo-nav-dropdown-menu {
  right: auto;
  left: 0;
  min-width: 220px;
}

.oyo-nav-dropdown:hover .oyo-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------- Desktop login dropdown ---------- */
.oyo-login-dropdown {
  position: relative;
}

.oyo-login-chevron {
  font-size: 14px;
  display: inline-block;
  transition: transform 0.25s ease;
}

.oyo-login-dropdown:hover .oyo-login-chevron {
  transform: rotate(180deg);
}

.oyo-login-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  min-width: 180px;
  padding: 8px 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.oyo-login-dropdown:hover .oyo-login-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.oyo-login-menu-item {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.oyo-login-menu-item:hover {
  background-color: #f5f8ff;
  color: var(--color-blue);
}

/* Chevron rotated state (mobile accordion JS) */
.oyo-login-chevron.is-rotated {
  transform: rotate(180deg);
}

/* ============================================================
   HERO
   ============================================================ */

.oyo-hero {
  position: relative;
  width: 100%;
  height: 950px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding-top: 32px;
}

@media (min-width: 992px) {
  .oyo-hero {
    height: 614px;
    align-items: center;
    padding-top: 0;
  }
}

/* ---------- Background image ---------- */
.oyo-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.oyo-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

@media (min-width: 992px) {
  .oyo-hero-img img {
    object-position: center right;
  }
}

/* ---------- Decorative vector ---------- */
.oyo-hero-vector {
  position: absolute;
  top: -10%;
  left: -20%;
  width: 70%;
  transform: none;
  height: auto;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 992px) {
  .oyo-hero-vector {
    top: 50%;
    left: -13%;
    width: 52%;
    transform: translateY(-50%);
  }
}

/* ---------- Content ---------- */
.oyo-hero-content {
  position: relative;
  z-index: 1;
}

.oyo-hero-title {
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  .oyo-hero-title {
    font-size: 64px;
  }
}

.oyo-hero-subtitle {
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: var(--color-white);
  margin-bottom: 12px;
}

@media (min-width: 992px) {
  .oyo-hero-subtitle {
    font-size: 24px;
  }
}

.oyo-hero-desc {
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: var(--color-white);
  max-width: 100%;
  margin-bottom: 25px;
}

@media (min-width: 992px) {
  .oyo-hero-desc {
    font-size: 18px;
  }
}

/* ---------- Feature list ---------- */
.oyo-hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oyo-hero-features li {
  display: flex;
  align-items: start;
  gap: 8px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2em;
  color: var(--color-white);
}

@media (min-width: 992px) {
  .oyo-hero-features li {
    font-size: 18px;
    line-height: 24px;
  }
}

.oyo-hero-features img {
  width: 14px;
  height: 14px;
  margin-top: 5px;
  flex-shrink: 0;
  object-fit: contain;
}

/* ---------- Buttons ---------- */
.oyo-hero-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.oyo-hero-btns .oyo-btn-wa-wrap {
  display: flex;
  width: 100%;
  max-width: 350px;
}

.oyo-hero-btns .oyo-btn-wa-label {
  color: var(--color-white);
}

@media (min-width: 768px) {
  .oyo-hero-btns .oyo-btn-wa-wrap {
    width: auto;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .oyo-hero-btns {
    flex-direction: row;
    align-items: start;
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ============================================================
   PLANS HERO (planes-individual / planes-pareja)
   ============================================================ */

.oyo-plans-hero {
  position: relative;
  width: 100%;
  background-color: var(--color-teal);
  background-image: url('../images/bg-hero-planes.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 0;
}

.oyo-plans-hero-vector {
  position: absolute;
  top: -50%;
  left: -10%;
  height: 200%;
  width: auto;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 992px) {
  .oyo-plans-hero-vector {
    top: -70%;
    height: 295%;
  }
}

.oyo-plans-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.oyo-plans-hero-label {
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: var(--color-white);
  margin-bottom: 8px;
}

.oyo-plans-hero-title {
  font-weight: 900;
  font-size: 36px;
  text-align: center;
  line-height: 1;
  color: var(--color-white);
  max-width: 900px;
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  .oyo-plans-hero-title {
    font-size: 64px;
  }
}

.oyo-plans-hero-subtitle {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: normal;
  color: var(--color-dark);
  margin-bottom: 4px;
  max-width: 900px;
}

@media (min-width: 992px) {
  .oyo-plans-hero-subtitle {
    font-size: 24px;
  }
}

.oyo-plans-hero-subtitle:last-of-type {
  margin-bottom: 32px;
}

/* Pareja variant — overrides bg only */
.oyo-plans-hero--pareja {
  background-color: var(--color-blue);
  background-image: url('../images/bg-hero-planes-pareja.png');
}

/* Contacto variant */
.oyo-plans-hero--contacto {
  background-color: var(--color-dark);
  background-image: url('../images/bg-hero-contact.png');
}

.oyo-plans-hero--contacto .oyo-plans-hero-subtitle {
  color: var(--color-white);
  max-width: 875px;
}

/* Tab switcher pill */
.oyo-plans-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 6px;
}


/* ============================================================
   PLAN OPTIONS
   ============================================================ */

.oyo-plans-options {
  padding: 48px 0;
  background-color: var(--color-white);
  overflow: hidden;
}

@media (min-width: 992px) {
  .oyo-plans-options {
    padding: 66px 96px 56px;
  }
}

/* ---------- Track ---------- */
.oyo-plans-slider {
  width: 100%;
  overflow: visible;
  touch-action: auto;
  padding: 0 24px;
}

@media (min-width: 992px) {
  .oyo-plans-slider {
    overflow: unset;
    touch-action: unset;
    padding: 0;
  }
}

.oyo-plans-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: unset;
  transform: none !important;
  transition: none !important;
}

@media (min-width: 992px) {
  .oyo-plans-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto 1fr;
    gap: 10px 24px;
    max-width: 1100px;
    margin: 0 auto;
    transform: unset !important;
    transition: transform var(--ease-slide) !important;
  }
}

/* ---------- Card base ----------
   Esquemas disponibles (agregar al HTML junto con .oyo-plan-card):
   — sin modificador       → fondo azul (default)
   — .oyo-plan-card--scheme-teal  → fondo verde/mint
   — .oyo-plan-card--scheme-dark  → fondo azul oscuro + franja teal
   ----------------------------------------------------------------- */
.oyo-plan-card {
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--color-blue);
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

@media (min-width: 992px) {
  .oyo-plan-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    width: auto;
  }
}

/* Featured (PREMIUM) */
.oyo-plan-card--scheme-dark {
  background-color: var(--color-dark);
}

/* ---------- Badge "Más elegido" ---------- */
.oyo-plan-card-badge {
  color: var(--color-dark);
  background: #F5F5DC;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 35px;
  padding: 0 16px;
  border-radius: 0 0 8px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  z-index: 1;
}

.oyo-plan-card-badge span {
  color: #FFD006;
}

/* ---------- Header ---------- */
.oyo-plan-card-header {
  padding: 52px 24px 24px 24px;
  text-align: center;
  min-height: 200px;
}

@media (min-width: 992px) {
  .oyo-plan-card-header {
    min-height: unset;
  }
}

.oyo-plan-card-name {
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: var(--color-white);
  margin-bottom: 12px;
}

.oyo-plan-card--scheme-dark .oyo-plan-card-name {
  color: var(--color-teal);
}

.oyo-plan-card-desc {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 0;
}

.oyo-plan-card--scheme-dark .oyo-plan-card-desc {
  color: var(--color-white);
}

/* ---------- Pricing band ---------- */
.oyo-plan-card-pricing {
  background-color: var(--color-navy);
  padding: 20px 24px;
  text-align: center;
}

.oyo-plan-card--scheme-dark .oyo-plan-card-pricing {
  background-color: var(--color-teal);
}

.oyo-plan-card-sessions {
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: var(--color-white);
  margin-bottom: 4px;
}

.oyo-plan-card-old-price {
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  color: var(--color-blue);
  margin-bottom: 4px;
}

.oyo-plan-card--scheme-dark .oyo-plan-card-old-price {
  color: var(--color-teal-deep);
}

.oyo-plan-card-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}

.oyo-plan-card-price {
  font-weight: 600;
  font-size: 52px;
  line-height: 1;
  color: var(--color-white);
}

.oyo-plan-card--scheme-dark .oyo-plan-card-price {
  color: var(--color-dark);
}

.oyo-plan-card-unit {
  font-weight: 400;
  font-size: 17px;
  line-height: normal;
  color: var(--color-white);
  padding-bottom: 6px;
}

.oyo-plan-card--scheme-dark .oyo-plan-card-unit {
  color: var(--color-dark);
}

.oyo-plan-card-per-session {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  margin: 4px 0 0;
}

/* ---------- CTA ---------- */
.oyo-plan-card-cta {
  padding: 20px 24px;
  text-align: center;
}

.oyo-plan-card-btn {
  background-color: var(--color-white);
  color: var(--color-dark);
  border: none;
  width: 100%;
  max-width: 240px;
}

.oyo-plan-card-btn:hover {
  background-color: #41A088;
  color: #ffffff;
}

/* Featured button (teal) */
.oyo-plan-card--scheme-dark .oyo-plan-card-btn {
  background-color: var(--color-teal);
  color: var(--color-white);
}

.oyo-plan-card--scheme-dark .oyo-plan-card-btn:hover {
  background-color: #6BE0C2;
  color: #ffffff;
}

/* Dark button variant (PLUS) */
.oyo-plan-card-btn--dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.oyo-plan-card-btn--dark:hover {
  background-color: #ffffff;
  color: var(--color-dark);
}

/* ---------- Features ---------- */
.oyo-plan-card-features {
  padding: 8px 24px 28px;
}

.oyo-plan-card-features-label {
  font-weight: 700;
  font-size: 14px;
  line-height: normal;
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.oyo-plan-card--scheme-dark .oyo-plan-card-features-label {
  color: var(--color-teal);
}

.oyo-plan-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oyo-plan-card-list li {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-dark);
  padding-left: 20px;
  position: relative;
}

.oyo-plan-card-list li::before {
  font-family: "bootstrap-icons";
  content: "\F26E";
  position: absolute;
  left: 0;
  color: var(--color-dark);
  font-size: 16px;
  line-height: 24px;
}

.oyo-plan-card--scheme-dark .oyo-plan-card-list li {
  color: var(--color-white);
}

.oyo-plan-card--scheme-dark .oyo-plan-card-list li::before {
  color: var(--color-teal);
}

/* ---------- Dots (ocultos en desktop) ---------- */
.oyo-plans-dots {
  display: none;
}

/* ---------- Footer note ---------- */
.oyo-plans-note {
  font-weight: 400;
  font-size: 18px;
  line-height: normal;
  color: var(--color-dark);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 0;
  padding: 0 24px;
}

@media (min-width: 992px) {
  .oyo-plans-note {
    padding: 0;
  }
}

/* ---------- Pareja variant — 2 columnas ---------- */
.oyo-plans-track--pareja {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}

/* PAREJA BÁSICO — fondo mint, textos oscuros */
.oyo-plan-card--scheme-teal {
  background-color: #5ecfb2;
}

.oyo-plan-card--scheme-teal .oyo-plan-card-name {
  color: var(--color-dark);
}

.oyo-plan-card--scheme-teal .oyo-plan-card-pricing {
  background-color: var(--color-teal);
}

.oyo-plan-card--scheme-teal .oyo-plan-card-old-price {
  color: var(--color-teal-deep);
}

.oyo-plan-card--scheme-teal .oyo-plan-card-features-label {
  color: var(--color-dark);
}

/* ============================================================
   PLANS INCLUDES
   ============================================================ */

.oyo-plans-includes {
  background-color: var(--color-cream);
}

.oyo-plans-includes-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

@media (min-width: 992px) {
  .oyo-plans-includes-container {
    padding: 66px 96px 56px;
  }
}

.oyo-plans-includes-title {
  font-weight: 700;
  font-size: 32px;
  line-height: normal;
  color: var(--color-teal);
  text-align: center;
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .oyo-plans-includes-title {
    font-size: 48px;
    margin-bottom: 40px;
  }
}

.oyo-plans-includes-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: var(--color-dark);
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .oyo-plans-includes-subtitle {
    font-size: 18px;
    margin-bottom: 28px;
  }
}

/* ---------- Inner layout: content (subtitle + items) + image ---------- */
.oyo-plans-includes-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .oyo-plans-includes-inner {
    flex-direction: row;
    gap: 48px;
  }
}

.oyo-includes-content {
  flex: 1;
  min-width: 0;
}

/* 2-column grid of items */
.oyo-includes-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 992px) {
  .oyo-includes-items {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }
}

/* Single item */
.oyo-includes-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.oyo-includes-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

.oyo-includes-item-title {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: var(--color-teal);
  margin-bottom: 4px;
}

.oyo-includes-item-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: var(--color-dark);
  margin-bottom: 0;
}

/* Image */
.oyo-plans-includes-img-wrap {
  flex-shrink: 0;
  order: -1;
  width: 100%;
}

@media (min-width: 992px) {
  .oyo-plans-includes-img-wrap {
    order: 0;
    width: 360px;
  }
}

.oyo-plans-includes-img {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   LOGOS CAROUSEL
   ============================================================ */

.oyo-logos {
  background-color: var(--color-white);
  padding: 34px 0 48px;
  overflow: hidden;
}

.oyo-logos-title {
  font-weight: 700;
  font-size: 32px;
  color: var(--color-teal);
  text-align: center;
  line-height: normal;
  margin-bottom: 28px;
  padding: 0 24px;
}

@media (min-width: 992px) {
  .oyo-logos-title {
    font-size: 42px;
    margin-bottom: 40px;
    padding: 0;
  }
}

/* Track wrapper: clips the overflow */
.oyo-logos-track-wrapper {
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Track: animated via JS-injected keyframe */
.oyo-logos-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: oyoLogoScroll 50s linear infinite;
}


@keyframes oyoLogoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Individual logo item */
.oyo-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.oyo-logo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================================================
   FEATURES
   ============================================================ */

/* ---------- Track — desktop: 3 cols centrados ---------- */
.oyo-features-slider {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

@media (min-width: 992px) {
  .oyo-features-slider {
    overflow: visible;
    touch-action: auto;
  }
}

.oyo-features-track {
  display: flex;
  gap: 0;
  justify-content: flex-start;
  transition: transform var(--ease-slide);
  will-change: transform;
}

@media (min-width: 992px) {
  .oyo-features-track {
    gap: 32px;
    justify-content: center;
    transition: none;
    will-change: auto;
  }
}

/* ---------- Card ---------- */
.oyo-feature-card {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 40px 32px;
}

@media (min-width: 992px) {
  .oyo-feature-card {
    flex: 0 0 330px;
    width: auto;
    padding: 24px 16px 32px;
  }
}

.oyo-feature-icon {
  width: 70px;
  height: 70px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oyo-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oyo-feature-card-title {
  font-weight: 700;
  font-size: 22px;
  color: var(--color-white);
  line-height: normal;
  margin-bottom: 12px;
}

.oyo-feature-card-desc {
  font-weight: 400;
  font-size: 18px;
  color: var(--color-white);
  line-height: normal;
  margin-bottom: 0;
}

/* ---------- Dots (visibles en mobile, ocultos en desktop) ---------- */
.oyo-features-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

@media (min-width: 992px) {
  .oyo-features-dots {
    display: none;
  }
}

.oyo-dot {
  height: 8px;
  width: 8px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.oyo-dot.is-active {
  width: 24px;
  background-color: var(--color-white);
}

/* ---------- CTA ---------- */
.oyo-features-cta {
  display: flex;
  justify-content: center;
}

/* ============================================================
   ESPECIALIDADES
   ============================================================ */

.oyo-specialties-bg {
  background-image: url(../images/bg-especialidades.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Track — mobile: apilado, desktop: 4 cols centrados ---------- */
.oyo-specialties-slider {
  width: 100%;
  overflow: visible;
  touch-action: auto;
  padding: 0;
}

@media (min-width: 992px) {
  .oyo-specialties-slider {
    overflow: visible;
    touch-action: auto;
    padding: 0;
  }
}

.oyo-specialties-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 992px) {
  .oyo-specialties-track {
    flex-direction: row;
    justify-content: center;
    transition: none;
    will-change: auto;
  }
}

/* ---------- Card ---------- */
.oyo-specialty-card {
  flex: 0 0 auto;
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

@media (min-width: 992px) {
  .oyo-specialty-card {
    flex: 0 0 260px;
    width: auto;
  }
}

.oyo-specialty-card-header {
  background-color: var(--color-teal);
  padding: 10px 10px 5px 10px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.oyo-specialty-tag {
  font-size: 18px;
  color: var(--color-white);
  line-height: normal;
}

.oyo-specialty-card-body {
  padding: 20px 40px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media (min-width: 992px) {
  .oyo-specialty-card-body {
    padding: 10px;
  }
}

.oyo-specialty-desc {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark);
  line-height: normal;
  margin-bottom: 10px;
}

.oyo-specialty-text {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.4;
  margin-bottom: 0;
  flex: 1;
}

.oyo-specialty-link {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark);
  text-decoration: underline;
  line-height: normal;
  margin-top: 16px;
  display: inline-block;
  transition: color 0.2s ease;
}

.oyo-specialty-link:hover {
  color: var(--color-teal);
}

/* ---------- Dots (visibles en mobile, ocultos en desktop) ---------- */
.oyo-specialties-dots {
  display: none;
}

@media (min-width: 992px) {
  .oyo-specialties-dots {
    display: none;
  }
}

/* ---------- CTA ---------- */
.oyo-specialties-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 60px;
}

.oyo-specialties-cta .oyo-btn {
  width: 100%;
  max-width: 350px;
  text-align: center;
  justify-content: center;
}

.oyo-specialties-cta .oyo-btn-wa-label {
  color: var(--color-white);
}

@media (min-width: 768px) {
  .oyo-specialties-cta {
    flex-direction: row;
    align-items: start;
    gap: 16px;
  }

  .oyo-specialties-cta .oyo-btn {
    width: auto;
    max-width: none;
  }
}

/* ============================================================
   STEPS
   ============================================================ */

.oyo-steps-bg {
  background-image: url(../images/bg-steps.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Track — mobile: apilado, desktop: fila centrada ---------- */
.oyo-steps-slider {
  width: 100%;
  overflow: visible;
  touch-action: auto;
  padding: 0;
}

@media (min-width: 992px) {
  .oyo-steps-slider {
    overflow: visible;
    touch-action: auto;
    padding: 0;
  }
}

.oyo-steps-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 992px) {
  .oyo-steps-track {
    flex-direction: row;
    justify-content: center;
    transition: none;
    will-change: auto;
  }
}

/* ---------- Card ---------- */
.oyo-step-card {
  flex: 0 0 auto;
  width: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 992px) {
  .oyo-step-card {
    flex: 0 0 290px;
    width: auto;
  }
}

/* ---------- Number badge ---------- */
.oyo-step-number {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background-color: var(--color-coral);
  color: var(--color-white);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.oyo-step-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-dark);
  line-height: normal;
  margin-bottom: 10px;
}

.oyo-step-desc {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.5;
  margin-bottom: 10px;
  flex: 1;
}

.oyo-step-highlight {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-navy);
  line-height: normal;
  margin-bottom: 0;
}

/* ---------- Dots (ocultos) ---------- */
.oyo-steps-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.oyo-steps-dots .oyo-dot {
  background-color: rgba(255, 255, 255, 0.35);
}

.oyo-steps-dots .oyo-dot.is-active {
  background-color: var(--color-teal);
}

@media (min-width: 992px) {
  .oyo-steps-dots {
    display: none;
  }
}

/* ---------- CTA ---------- */
.oyo-steps-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */



/* ---------- Grid container ---------- */
.oyo-testimonials-grid {
  max-width: 1007px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ---------- Bottom row ---------- */
.oyo-testimonials-row2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

@media (min-width: 992px) {
  .oyo-testimonials-row2 {
    flex-direction: row;
    gap: 24px;
  }
}

/* ---------- Base card ---------- */
.oyo-testimonial-card {
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.oyo-testimonial-card--cream {
  background-color: var(--color-cream);
}

.oyo-testimonial-card--gray {
  background-color: var(--color-bg-stripe);
}

/* Card 1 (Ana Lucia): columna en mobile, horizontal en desktop */
.oyo-testimonials-grid>.oyo-testimonial-card {
  flex-direction: column-reverse;
  height: auto;
}

@media (min-width: 992px) {
  .oyo-testimonials-grid>.oyo-testimonial-card {
    flex-direction: row;
    height: 201px;
  }
}

/* Card 2 (Carlos): full width mobile, flex ratio desktop */
.oyo-testimonial-card--photo-left {
  flex: none;
  height: 320px;
}

@media (min-width: 992px) {
  .oyo-testimonial-card--photo-left {
    flex: 3;
    height: auto;
  }
}

/* Card 3 (Patricia): full width mobile, flex ratio desktop */
.oyo-testimonial-card--col {
  flex: none;
  flex-direction: column;
  height: auto;
}

@media (min-width: 992px) {
  .oyo-testimonial-card--col {
    flex: 2;
  }
}

/* ---------- Photo placeholder ---------- */
.oyo-testimonial-photo {
  flex: none;
  width: 100%;
  background-color: #b8b4b6;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .oyo-testimonial-photo {
    flex: 0 0 47%;
    height: auto;
    width: auto;
  }
}

/* Card 2 photo: left side ~43% */
.oyo-testimonial-card--photo-left .oyo-testimonial-photo {
  flex: 0 0 43%;
}

/* Card 3 photo: top block, fixed height */
.oyo-testimonial-photo--top {
  flex: none;
  height: 220px;
  width: 100%;
}

@media (min-width: 992px) {
  .oyo-testimonial-photo--top {
    height: 145px;
  }
}

/* Images fill the photo container */
.oyo-testimonial-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ---------- Text content ---------- */
.oyo-testimonial-content {
  flex: 1;
  padding: 20px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .oyo-testimonial-content {
    padding: 32px 28px 24px;
    justify-content: center;
  }
}

/* Card 3 content: top-aligned since photo is above */
.oyo-testimonial-card--col .oyo-testimonial-content {
  justify-content: flex-start;
  padding: 20px 28px 24px;
}

.oyo-testimonial-quote {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.55;
  margin: 0 0 14px;
  padding: 0;
  border: none;
}

.oyo-testimonial-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark);
  line-height: normal;
  margin: 0 0 3px;
}

.oyo-testimonial-location {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark);
  line-height: normal;
  margin: 0;
}

/* ---------- CTA ---------- */
.oyo-testimonials-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin-top: 40px;
}

.oyo-testimonials-cta .oyo-btn {
  width: 100%;
  max-width: 350px;
  text-align: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .oyo-testimonials-cta {
    flex-direction: row;
    justify-content: center;
  }

  .oyo-testimonials-cta .oyo-btn {
    width: auto;
    max-width: none;
  }
}

/* ============================================================
   STATS
   ============================================================ */

.oyo-stats {
  background-color: var(--color-blue);
}

.oyo-stats-grid {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
}

@media (min-width: 992px) {
  .oyo-stats-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
}

.oyo-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
}

@media (min-width: 992px) {
  .oyo-stat-item {
    max-width: 243px;
  }
}

.oyo-stat-number {
  font-weight: 700;
  font-size: 52px;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 12px;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .oyo-stat-number {
    font-size: 56px;
  }
}

.oyo-stat-label {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .oyo-stat-label {
    font-size: 18px;
  }
}

/* ============================================================
   COMPARISON
   ============================================================ */

.oyo-comparison-bg {
  background-color: var(--color-bg-stripe) !important;
}

/* ---------- Table wrapper ---------- */
.oyo-comparison-table-wrapper {
  background-color: var(--color-white);
  padding: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
}

/* ---------- Table ---------- */
.oyo-comparison-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  table-layout: fixed;
}

/* ---------- Column widths ---------- */
.oyo-cmp-col--feature {
  width: 34%;
}

.oyo-cmp-col--oyo {
  width: 24%;
}

.oyo-cmp-col--other {
  width: 24.5%;
}

/* ---------- Header row ---------- */
.oyo-comparison-table thead th {
  height: 53px;
  padding: 10px 14px;
  font-weight: bold;
  font-size: 11px;
  text-align: center;
  vertical-align: middle;
}

.oyo-comparison-table thead th:nth-child(2) {
  font-size: 13px;
}

.oyo-cmp-col--feature {
  background-color: var(--color-white);
}

.oyo-cmp-col--oyo {
  background-color: var(--color-teal);
  color: var(--color-white);
}

.oyo-cmp-col--other {
  background-color: var(--color-cream);
  color: var(--color-dark);
}

/* ---------- Body rows ---------- */
.oyo-comparison-table tbody td {
  height: 53px;
  padding: 10px 14px;
  vertical-align: middle;
  font-size: 12px;
  color: var(--color-dark);
  line-height: 1.4;
}

/* Feature column (row label) */
.oyo-cmp-feature {
  text-align: left;
  font-weight: 400;
  background-color: var(--color-white);
}

/* Opción Yo value column */
.oyo-cmp-oyo {
  background-color: #dcfff6;
  font-weight: 700;
  text-align: center;
}

/* Other columns values */
.oyo-cmp-value {
  text-align: center;
  font-weight: 400;
  background-color: var(--color-white);
}

/* Link inside Opción Yo cell */
.oyo-cmp-link {
  font-weight: 400;
  font-size: 12px;
  color: #d31f11;
  text-decoration: underline;
  display: block;
  line-height: normal;
}

.oyo-cmp-link:hover {
  color: #a8150c;
}

/* ---------- Info icon & tooltip ---------- */
.oyo-cmp-info-wrap {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-left: 6px;
}

.oyo-cmp-info {
  background-color: #f4a020;
  color: var(--color-white);
  font-weight: 700;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
}

.oyo-cmp-tooltip {
  position: fixed;
  width: 240px;
  background-color: var(--color-white);
  border: 1px solid #e0dde1;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
  padding: 14px 16px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

/* Arrow border layer */
.oyo-cmp-tooltip::before {
  content: '';
  position: absolute;
  left: var(--arrow-x, 20px);
  transform: translateX(-50%);
  border: 8px solid transparent;
  pointer-events: none;
}

/* Arrow fill layer */
.oyo-cmp-tooltip::after {
  content: '';
  position: absolute;
  left: var(--arrow-x, 20px);
  transform: translateX(-50%);
  border: 7px solid transparent;
  pointer-events: none;
}

/* Default: tooltip below icon → arrow points up */
.oyo-cmp-tooltip:not([data-flip="1"])::before {
  top: -9px;
  border-top: none;
  border-bottom-color: #e0dde1;
}

.oyo-cmp-tooltip:not([data-flip="1"])::after {
  top: -7px;
  border-top: none;
  border-bottom-color: var(--color-white);
}

/* Flipped: tooltip above icon → arrow points down */
.oyo-cmp-tooltip[data-flip="1"]::before {
  bottom: -9px;
  border-bottom: none;
  border-top-color: #e0dde1;
}

.oyo-cmp-tooltip[data-flip="1"]::after {
  bottom: -7px;
  border-bottom: none;
  border-top-color: var(--color-white);
}

.oyo-cmp-tooltip.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.oyo-cmp-tooltip p {
  font-size: 13px;
  color: var(--color-dark);
  line-height: 1.5;
  margin-bottom: 10px;
}

.oyo-cmp-tooltip ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.oyo-cmp-tooltip ul li {
  font-size: 13px;
  color: var(--color-dark);
  line-height: 1.4;
  padding-left: 18px;
  position: relative;
  margin-bottom: 4px;
}

.oyo-cmp-tooltip ul li:last-child {
  margin-bottom: 0;
}

.oyo-cmp-tooltip ul li::before {
  content: '\F26E';
  color: var(--color-teal);
  font-family: 'bootstrap-icons';
  font-size: 15px;
  font-weight: 400;
  position: absolute;
  left: 0;
}

@media (min-width: 992px) {
  .oyo-comparison-table-wrapper {
    padding: 20px;
  }

  .oyo-cmp-col--feature {
    width: 27%;
  }

  .oyo-comparison-table thead th,
  .oyo-comparison-table tbody td {
    padding: 14px 20px;
    font-size: 16px;
  }

  .oyo-comparison-table thead th {
    font-size: 16px;
  }
}

/* ============================================================
   MOBILE COMPARISON TABLE
   ============================================================ */
.oyo-cmp-mobile-table {
  min-width: 0;
}

.oyo-cmp-mobile-table .oyo-cmp-col--feature { 
  width: 35%; 
}
.oyo-cmp-mobile-table .oyo-cmp-col--oyo {
  width: 25%;
}
.oyo-cmp-mobile-table .oyo-cmp-col--other   { 
  width: 20%;
}

.oyo-cmp-mobile-table .oyo-cmp-oyo,
.oyo-cmp-mobile-table .oyo-cmp-value {
  text-align: center;
  vertical-align: middle;
}

.oyo-cmp-mobile-table .oyo-cmp-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.oyo-cmp-feature-text {
  flex: 1;
  min-width: 0;
}

.oyo-cmp-mobile-table .oyo-cmp-info-wrap {
  flex-shrink: 0;
  margin-left: 0;
}

.oyo-cmp-icon-check {
  color: var(--color-teal);
  font-size: 20px;
  display: block;
}

.oyo-cmp-icon-x,
.oyo-cmp-icon-gray {
  color: var(--color-gray-slate);
  font-size: 20px;
  display: block;
}

/* Zebra striping — even rows, skip oyo column */
.oyo-comparison-bg .oyo-comparison-table tbody tr:nth-child(even) .oyo-cmp-feature,
.oyo-comparison-bg .oyo-comparison-table tbody tr:nth-child(even) .oyo-cmp-value {
  background-color: var(--color-bg-stripe);
}

/* ============================================================
   PLANS COMPARISON (individual / pareja pages)
   ============================================================ */

.oyo-plans-comparison {
  background-color: var(--color-white);
}

.oyo-plans-comparison .oyo-comparison-table-wrapper {
  box-shadow: none;
}

.oyo-plans-comparison-title {
  font-weight: 700;
  font-size: 36px;
  color: var(--color-blue);
  text-align: center;
  margin-bottom: 28px;
}

@media (min-width: 992px) {
  .oyo-plans-comparison-title {
    font-size: 48px;
    margin-bottom: 40px;
  }
}

/* Plan column widths (3 equal plan cols) */
.oyo-cmp-col--plan {
  width: 24.33%;
}

/* Header: CARACTERÍSTICA, BÁSICO, PLUS */
.oyo-cmp-plan-header {
  background-color: var(--color-cream);
  color: var(--color-dark);
}

/* Header: PREMIUM (featured) */
.oyo-cmp-premium-header {
  background-color: var(--color-blue);
  color: var(--color-white);
}

/* Body cells: PREMIUM column */
.oyo-cmp-premium {
  background-color: var(--color-navy);
  font-weight: 700;
  text-align: center;
}

/* Override base td color (higher specificity needed) */
.oyo-comparison-table .oyo-cmp-premium {
  color: var(--color-white);
}

/* Alternating row stripes (even rows) — skip premium column */
.oyo-plans-comparison .oyo-comparison-table tbody tr:nth-child(even) .oyo-cmp-feature,
.oyo-plans-comparison .oyo-comparison-table tbody tr:nth-child(even) .oyo-cmp-value:not(.oyo-cmp-premium) {
  background-color: var(--color-bg-stripe);
}

/* Premium column must stay solid navy (override stripes) */
.oyo-plans-comparison .oyo-comparison-table .oyo-cmp-premium {
  background-color: var(--color-navy);
}

/* Mobile: no horizontal scroll, fit to screen */
@media (max-width: 991.98px) {
  .oyo-plans-comparison .table-responsive {
    overflow-x: visible;
  }

  .oyo-plans-comparison .oyo-comparison-table {
    min-width: 0;
  }

  .oyo-plans-comparison .oyo-cmp-col--feature {
    width: 34%;
  }

  .oyo-plans-comparison .oyo-cmp-col--plan {
    width: 22%;
  }

  .oyo-plans-comparison .oyo-comparison-table thead th,
  .oyo-plans-comparison .oyo-comparison-table tbody td {
    padding: 8px 5px;
    font-size: 12px;
    line-height: 1.3;
    word-break: break-word;
  }
}

/* ============================================================
   PLANS CTA
   ============================================================ */

.oyo-plans-cta {
  background-color: var(--color-dark);
}

.oyo-plans-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}

.oyo-plans-cta-container .oyo-btn-wa-label {
  color: var(--color-white);
}

.oyo-plans-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.oyo-plans-cta-btns .oyo-btn-wa-wrap {
  width: 100%;
  max-width: 350px;
}

@media (min-width: 768px) {
  .oyo-plans-cta-btns {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
  }

  .oyo-plans-cta-btns .oyo-btn-wa-wrap {
    width: auto;
    max-width: none;
  }
}

@media (min-width: 992px) {
  .oyo-plans-cta-container {
    padding: 66px 96px 56px;
  }
}

.oyo-plans-cta-title {
  font-weight: 700;
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  .oyo-plans-cta-title {
    font-size: 48px;
  }
}

.oyo-plans-cta-subtitle {
  font-weight: 400;
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .oyo-plans-cta-subtitle {
    font-size: 22px;
    font-weight: 700;
  }
}

/* ============================================================
   BENEFITS
   ============================================================ */

.oyo-benefits {
  background-color: var(--color-gray-form);
  padding: 48px 0 56px;
}

@media (min-width: 992px) {
  .oyo-benefits {
    padding: 60px 20px;
  }
}

/* ---------- Header ---------- */
.oyo-benefits-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 32px;
}

@media (min-width: 992px) {
  .oyo-benefits-header {
    padding: 0;
    margin-bottom: 48px;
  }
}

.oyo-benefits-title {
  color: var(--color-blue);
  margin-bottom: 12px;
}

.oyo-benefits-subtitle {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark);
  line-height: normal;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .oyo-benefits-subtitle {
    font-size: 18px;
  }
}

/* ---------- Dots (visibles mobile, ocultos desktop) ---------- */
.oyo-benefits-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.oyo-benefits-dots .oyo-dot {
  background-color: rgba(36, 50, 88, 0.25);
}

.oyo-benefits-dots .oyo-dot.is-active {
  background-color: var(--color-navy);
}

@media (min-width: 992px) {
  .oyo-benefits-dots {
    display: none;
  }
}

.oyo-benefits-slider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  touch-action: pan-y;
  padding: 0 24px;
}

@media (min-width: 992px) {
  .oyo-benefits-slider {
    overflow: visible;
    touch-action: auto;
    padding: 0;
  }
}

.oyo-benefits-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  transition: transform var(--ease-slide);
  will-change: transform;
}

@media (min-width: 992px) {
  .oyo-benefits-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex-wrap: unset;
    transition: none;
    will-change: auto;
  }
}

/* ---------- Card ---------- */
.oyo-benefit-card {
  flex: 0 0 100%;
  border-radius: 10px;
  padding: 24px 16px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 220px;
}

@media (min-width: 992px) {
  .oyo-benefit-card {
    flex: none;
    min-height: 234px;
  }
}

.oyo-benefit-card--medium {
  background-color: #4c87c7;
}

.oyo-benefit-card--dark {
  background-color: var(--color-navy);
}

/* Icon circle */
.oyo-benefit-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 14px;
}

.oyo-benefit-icon svg {
  width: 28px;
  height: 28px;
}

/* Card text */
.oyo-benefit-card-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  line-height: normal;
  margin-bottom: 8px;
}

.oyo-benefit-card-text {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: 0;
}

/* ---------- CTA ---------- */
.oyo-benefits-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

@media (min-width: 992px) {
  .oyo-benefits-cta {
    margin-top: 48px;
  }
}

/* ============================================================
   HISTORY
   ============================================================ */

.oyo-history {
  background-color: var(--color-teal);
  background-image: url(../images/bg-history.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* ---------- Inner flex layout ---------- */
.oyo-history-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .oyo-history-inner {
    flex-direction: row;
    gap: 50px;
  }
}

/* ---------- Left: photo ---------- */
.oyo-history-photo-col {
  flex: none;
  width: 100%;
}

@media (min-width: 992px) {
  .oyo-history-photo-col {
    flex: 0 0 420px;
    width: auto;
  }
}

.oyo-history-photo-wrap {
  width: 100%;
  max-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-gray-form);
}

@media (min-width: 992px) {
  .oyo-history-photo-wrap {
    height: 510px;
  }
}

.oyo-history-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.oyo-history-caption {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-dark);
  margin-top: 16px;
  margin-bottom: 0;
}

/* ---------- Right: content ---------- */
.oyo-history-content-col {
  flex: 1;
}

/* Móvil: título + cita arriba de la foto; pie de foto oculto */
@media (max-width: 991.98px) {
  .oyo-history-inner > .row.oyo-history-row {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-left: 0;
    margin-right: 0;
  }

  .oyo-history-content-col {
    display: contents;
  }

  .oyo-history-headings {
    order: 1;
    width: 100%;
  }

  .oyo-history-photo-col {
    order: 2;
    width: 100%;
    margin-bottom: 28px;
  }

  .oyo-history-body {
    order: 3;
    width: 100%;
  }

  .oyo-history-method {
    order: 4;
    width: 100%;
  }

  .oyo-history-cta {
    order: 5;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .oyo-history-content-col {
    display: block;
  }
}

.oyo-history-label {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.oyo-history-quote {
  font-weight: 700;
  font-size: 32px;
  color: var(--color-white);
  line-height: 1.0;
  margin-bottom: 28px;
}

@media (min-width: 992px) {
  .oyo-history-quote {
    font-size: 48px;
  }
}

/* Body paragraphs */
.oyo-history-body p {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.5;
  margin-bottom: 10px;
}

.oyo-history-body p:last-child {
  margin-bottom: 0;
}

.oyo-history-body strong {
  font-weight: 700;
}

/* Method box */
.oyo-history-method {
  background-color: #7bd6bf;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 24px;
  margin-bottom: 28px;
}

.oyo-history-method-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.oyo-history-method p {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.5;
  margin-bottom: 8px;
}

.oyo-history-method p:last-child {
  margin-bottom: 0;
}

/* CTA row */
.oyo-history-cta {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
}

.oyo-history-cta .oyo-btn {
  width: 100%;
  max-width: 350px;
  text-align: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .oyo-history-cta {
    flex-direction: row;
    align-items: start;
  }

  .oyo-history-cta .oyo-btn {
    width: auto;
    max-width: none;
  }
}




/* ============================================================
   TESTS SECTION
   ============================================================ */

.oyo-tests-bg {
  background-color: var(--color-gray-form);
}

/* ---------- Slider ---------- */
.oyo-tests-slider {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  padding: 0 24px;
}

@media (min-width: 992px) {
  .oyo-tests-slider {
    overflow: visible;
    touch-action: auto;
    padding: 0;
  }
}

.oyo-tests-track {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  transition: transform var(--ease-slide);
  will-change: transform;
}

@media (min-width: 992px) {
  .oyo-tests-track {
    gap: 32px;
    justify-content: center;
    transition: none;
    will-change: auto;
  }
}

/* ---------- Card ---------- */
.oyo-test-card {
  flex: 0 0 100%;
  background-color: var(--color-blue);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
}

@media (min-width: 992px) {
  .oyo-test-card {
    flex: 0 0 290px;
    padding: 28px 24px 32px;
  }
}

.oyo-test-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oyo-test-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.oyo-test-card-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  line-height: normal;
  margin-bottom: 10px;
}

.oyo-test-card-desc {
  font-weight: 400;
  font-size: 16px;
  color: var(--color-dark);
  line-height: normal;
  flex: 1;
  margin-bottom: 20px;
}

.oyo-test-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  text-decoration: underline;
  white-space: nowrap;
}

.oyo-test-link:hover {
  color: var(--color-dark);
}

/* ---------- Dots (visibles mobile, ocultos desktop) ---------- */
.oyo-tests-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.oyo-tests-dots .oyo-dot {
  background-color: rgba(36, 50, 88, 0.25);
}

.oyo-tests-dots .oyo-dot.is-active {
  background-color: var(--color-blue);
}

@media (min-width: 992px) {
  .oyo-tests-dots {
    display: none;
  }
}

/* ============================================================
   APP SECTION
   ============================================================ */

.oyo-app {
  background-color: var(--color-dark);
}

.oyo-app-inner {
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 992px) {
  .oyo-app-inner {
    flex-direction: row;
    gap: 40px;
  }
}

.oyo-app-image {
  display: block;
  width: 100%;
  height: auto;
}

.oyo-app-title {
  font-size: 32px;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  .oyo-app-title {
    font-size: 48px;
    line-height: 1;
  }
}

.oyo-app-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: var(--color-white);
  margin-bottom: 16px;
}

@media (min-width: 992px) {
  .oyo-app-desc {
    font-size: 18px;
  }
}

.oyo-app-list {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 32px;
}

.oyo-app-list li {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-white);
}

@media (min-width: 992px) {
  .oyo-app-list li {
    font-size: 18px;
    line-height: 32px;
  }
}

.oyo-app-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.oyo-app-btns .oyo-btn {
  width: 100%;
  max-width: 350px;
  text-align: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .oyo-app-btns {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .oyo-app-btns .oyo-btn {
    width: auto;
    max-width: none;
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.oyo-faq-bg {
  background-color: var(--color-teal) !important;
}

/* ---------- FAQ list ---------- */
.oyo-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 992px) {
  .oyo-faq-list {
    gap: 16px;
    padding: 0;
  }

  .oyo-faq-icon {
    width: 50px;
    height: 50px;
  }

  .oyo-faq-footer {
    padding: 0;
  }
}

/* ---------- Item ---------- */
.oyo-faq-item {
  background-color: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
}

/* ---------- Trigger (header row) ---------- */
.oyo-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.oyo-faq-question {
  font-weight: 700;
  font-size: 17px;
  color: #000000;
  line-height: 24px;
  flex: 1;
}

@media (min-width: 992px) {
  .oyo-faq-question {
    font-size: 20px;
    line-height: 28px;
  }
}

/* ---------- Icon circle ---------- */
.oyo-faq-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #e8e8e8;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.25s ease;
}

.oyo-faq-item.is-open .oyo-faq-icon {
  background-color: #d0d0d0;
}

/* SVG icons: chevron and minus, toggled via opacity */
.oyo-faq-svg {
  width: 22px;
  height: 22px;
  position: absolute;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.oyo-faq-svg--chevron {
  opacity: 1;
  transform: scale(1);
}

.oyo-faq-svg--minus {
  opacity: 0;
  transform: scale(0.7);
}

.oyo-faq-item.is-open .oyo-faq-svg--chevron {
  opacity: 0;
  transform: scale(0.7);
}

.oyo-faq-item.is-open .oyo-faq-svg--minus {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Body — smooth height via CSS grid ---------- */
.oyo-faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.oyo-faq-item.is-open .oyo-faq-body {
  grid-template-rows: 1fr;
}

.oyo-faq-body-inner {
  overflow: hidden;
}

.oyo-faq-answer {
  padding: 0 20px 20px;
}

.oyo-faq-answer p {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 12px;
}

.oyo-faq-answer p:last-child {
  margin-bottom: 0;
}

/* ---------- Footer links ---------- */
.oyo-faq-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.oyo-faq-more {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-white);
  text-decoration: underline;
}

.oyo-faq-more:hover {
  color: var(--color-dark);
}


/* ---------- Plans FAQ — subtitle & contact strip ---------- */

.oyo-plans-faq-subtitle {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 28px;
}

.oyo-plans-contact-strip {
  background-color: #459a84;
  padding: 32px 24px;
  text-align: center;
}

.oyo-plans-faq-strip-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.oyo-plans-faq-strip-text {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  margin-bottom: 0;
}

.oyo-plans-faq-strip-text a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.oyo-plans-faq-strip-text a:hover {
  opacity: 0.8;
}

@media (min-width: 992px) {
  .oyo-plans-faq-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .oyo-plans-faq-strip-title {
    font-size: 24px;
  }

  .oyo-plans-faq-strip-text {
    font-size: 18px;
  }
}

/* ============================================================
   WE ARE SECTION
   ============================================================ */

.oyo-weare-bg {
  position: relative;
  width: 100%;
  min-height: 1100px;
  background-image: url('../images/home-we-are-mobile.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
}

.oyo-weare-content .oyo-section-title {
  font-size: 48px;
  line-height: 1em;
  max-width: 100%;
}

.oyo-weare-desc {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-dark);
  line-height: normal;
  margin-bottom: 32px;
  max-width: 100%;
}

.oyo-weare-btns {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.oyo-weare-btns .oyo-btn {
  width: 100%;
  max-width: 350px;
  text-align: center;
  justify-content: center;
  align-self: center;
}

@media (min-width: 768px) {
  .oyo-weare-btns {
    flex-direction: row;
    align-items: start;
    flex-wrap: wrap;
  }

  .oyo-weare-btns .oyo-btn {
    width: auto;
    max-width: none;
    align-self: flex-start;
  }
}

@media (min-width: 992px) {
  .oyo-weare-bg {
    background-image: url('../images/home-we-are.jpg');
    background-position: center right;
    min-height: 576px;
    align-items: center;
    padding-top: 0;
  }

  .oyo-weare-desc {
    max-width: 407px;
  }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.oyo-contact-bg {
  background-color: var(--color-dark) !important;
}

/* ---------- Two-column layout ---------- */
.oyo-contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* ---------- Left: copy ---------- */
.oyo-contact-copy {
  flex: none;
  width: 100%;
}

.oyo-contact-desc {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  line-height: normal;
  margin-bottom: 16px;
}

.oyo-contact-tagline {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  line-height: normal;
  margin-bottom: 32px;
}

.oyo-contact-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oyo-contact-perks li {
  font-weight: 500;
  font-size: 18px;
  color: var(--color-teal);
  line-height: normal;
}

/* ---------- Right: form card ---------- */
.oyo-contact-card {
  width: 100%;
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 28px 24px 24px;
}

@media (min-width: 992px) {
  .oyo-contact-inner {
    flex-direction: row;
    gap: 64px;
    padding: 0;
  }

  .oyo-contact-copy {
    flex: 0 0 42%;
    width: auto;
  }

  .oyo-contact-desc,
  .oyo-contact-tagline {
    font-size: 18px;
  }

  .oyo-contact-perks li {
    font-size: 20px;
  }

  .oyo-contact-card {
    flex: 1;
    width: auto;
    padding: 36px 40px 28px;
  }
}

.oyo-contact-card-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-navy-deep);
  text-align: center;
  margin-bottom: 24px;
}

/* ---------- Form groups ---------- */
.oyo-form-group {
  margin-bottom: 20px;
}

.oyo-form-label {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #4a5568;
  margin-bottom: 6px;
}

.oyo-form-input {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-family: var(--font-base);
  font-size: 14px;
  color: #2d3748;
  background-color: #EAFFFA;
  border: 1px solid var(--color-teal);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.oyo-form-input::placeholder {
  color: var(--color-gray-slate);
}

.oyo-form-input:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(70, 167, 222, 0.15);
}

.was-validated .oyo-form-input:invalid {
  border-color: #e53e3e;
}

/* ---------- Phone row (select + input) ---------- */
.oyo-form-phone {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.oyo-form-select {
  height: 44px;
  padding: 0 10px;
  font-family: var(--font-base);
  font-size: 14px;
  color: #2d3748;
  background-color: #EAFFFA;
  border: 1px solid var(--color-teal);
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.oyo-form-select:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(70, 167, 222, 0.15);
}

.oyo-form-phone .oyo-form-input {
  flex: 1;
}

/* ---------- Bootstrap validation feedback ---------- */
.oyo-contact-form .invalid-feedback {
  display: none;
  font-size: 12px;
  color: #e53e3e;
  margin-top: 5px;
  width: 100%;
}

.was-validated .oyo-form-input:invalid~.invalid-feedback,
.was-validated .oyo-form-checkbox:invalid~.invalid-feedback {
  display: block;
}

/* Phone: invalid-feedback lives inside the flex wrapper */
.oyo-form-phone .invalid-feedback {
  flex-basis: 100%;
  margin-top: 4px;
}

/* ---------- Checkbox ---------- */
.oyo-form-group--check {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 10px;
  margin-bottom: 20px;
}

.oyo-form-check-label {
  line-height: 1em;
  flex: 1;
  cursor: pointer;
}

.oyo-form-checkbox {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-blue);
  cursor: pointer;
}

.oyo-form-check-label span {
  font-size: 12px;
  color: #718096;
  line-height: 1.5;
}

.oyo-form-group--check .invalid-feedback {
  flex-basis: 100%;
}

/* ---------- Legal line + links ---------- */
.oyo-contact-legal {
  font-size: 11px;
  color: #718096;
  text-align: center;
  margin: 0;
}

.oyo-contact-link {
  color: var(--color-blue);
  text-decoration: underline;
}

.oyo-contact-link:hover {
  color: var(--color-dark);
}

.oyo-contact {
  padding: 48px 0 56px;
}

.oyo-contact-title {
  font-size: 32px;
}

@media (min-width: 992px) {
  .oyo-contact {
    padding: 66px 96px 56px;
  }

  .oyo-contact-title {
    font-size: 48px;
  }
}


/* ============================================================
   CONTACT FORM
   ============================================================ */
.oyo-contact-form-section {
  background-color: var(--color-white);
  padding: 48px 24px;
}

.oyo-contact-form-container {
  max-width: 616px;
  margin: 0 auto;
}

.oyo-contact-form-intro {
  font-size: 16px;
  color: #1f2937;
  text-align: center;
  margin-bottom: 40px;
}

/* ============================================================
   OTHER WAYS (Otras formas de contactarnos)
   ============================================================ */
.oyo-other-ways {
  background-color: var(--color-blue);
  text-align: center;
}

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

.oyo-other-ways-title {
  font-weight: 700;
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: 40px;
}

.oyo-other-ways-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .oyo-other-ways-title {
    font-size: 48px;
  }

  .oyo-other-ways-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
  }
}

@media (min-width: 992px) {
  .oyo-other-ways-grid {
    gap: 50px;
  }
}

.oyo-other-ways-card {
  border: 1px solid var(--color-white);
  border-radius: 10px;
  padding: 30px 25px 15px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.oyo-other-ways-icon {
  font-size: 36px;
  color: var(--color-white);
  line-height: 1;
}

.oyo-other-ways-card-title {
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
  margin: 0;
}

.oyo-other-ways-card-desc {
  font-size: 18px;
  color: var(--color-white);
  margin: 0;
  flex: 1;
}


/* Textarea */
.oyo-form-textarea {
  resize: vertical;
  min-height: 112px;
}

/* Submit button */
.oyo-contact-submit {
  display: block;
  width: 100%;
  background-color: var(--color-teal);
  color: var(--color-white);
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 14px;
  padding: 18px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.oyo-contact-submit:hover {
  background-color: #3da083;
}

@media (min-width: 992px) {
  .oyo-contact-form-section {
    padding: 64px 24px;
  }
}

/* ============================================================
   QUIÉNES SOMOS — HERO
   ============================================================ */
.oyo-qs-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(to right, var(--color-blue), var(--color-teal-vivid));
  background-image: url('../images/bg-hero-quienes-somos.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 48px 0 56px;
}

.oyo-qs-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.oyo-qs-hero-label {
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.oyo-qs-hero-title {
  color: var(--color-white);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  max-width: 900px;
  margin-bottom: 24px;
}

.oyo-qs-hero-subtitle {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 18px;
  max-width: 700px;
  margin-bottom: 32px;
}

.oyo-qs-hero-quote {
  font-style: italic;
  font-size: 16px;
  color: var(--color-white);
  margin: 0;
}

@media (min-width: 992px) {
  .oyo-qs-hero-title {
    font-size: 64px;
  }

  .oyo-qs-hero-subtitle {
    font-size: 24px;
  }

  .oyo-qs-hero-quote {
    font-size: 24px;
  }
}

/* ============================================================
   QUIÉNES SOMOS — NUESTRA HISTORIA
   ============================================================ */
.oyo-qs-history {
  position: relative;
  width: 100%;
  background-image: url('../images/nuestra-historia-mobile.png');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 48px 24px 560px;
  /* space at bottom for photo */
}

.oyo-qs-history-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
}

.oyo-qs-history-text {
  width: 100%;
  max-width: 100%;
}

.oyo-qs-history-label {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.oyo-qs-history-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 24px;
}

.oyo-qs-history-body {
  font-size: 16px;
  color: var(--color-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oyo-qs-history-body p {
  margin: 0;
}

.oyo-qs-history-body strong {
  font-size: 18px;
  color: var(--color-white);
  font-weight: 700;
}

.oyo-qs-history-body ul {
  margin: 0;
  padding-left: 20px;
}

.oyo-qs-history-body li {
  line-height: normal;
  margin-bottom: 4px;
}

@media (min-width: 992px) {
  .oyo-qs-history {
    background-image: url('../images/nuestra-historia-desktop.png');
    background-position: left center;
    padding: 80px 24px;
  }

  .oyo-qs-history-content {
    justify-content: flex-end;
  }

  .oyo-qs-history-text {
    width: 55%;
    max-width: none;
  }

  .oyo-qs-history-title {
    font-size: 48px;
  }
}

/* ============================================================
   QUIÉNES SOMOS — OUR SKILLS (¿Qué nos hace diferentes?)
   ============================================================ */
.oyo-our-skills {
  background-color: var(--color-teal);
  padding: 64px 24px;
  text-align: center;
}

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

.oyo-our-skills-title {
  font-weight: 700;
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.oyo-our-skills-subtitle {
  font-size: 18px;
  color: var(--color-dark);
  margin-bottom: 40px;
}

.oyo-our-skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 340px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .oyo-our-skills-title {
    font-size: 48px;
  }

  .oyo-our-skills-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    margin: 0;
  }
}

@media (min-width: 992px) {
  .oyo-our-skills-grid {
    gap: 50px;
  }
}

.oyo-our-skills-card {
  background-color: #4aab93;
  border: 1px solid var(--color-white);
  border-radius: 10px;
  padding: 30px 25px 15px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.oyo-our-skills-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.oyo-our-skills-card-title {
  font-weight: 700;
  font-size: 24px;
  color: var(--color-white);
  margin: 0;
}

.oyo-our-skills-card-desc {
  font-size: 18px;
  color: var(--color-white);
  margin: 0;
}


/* ============================================================
   QUIÉNES SOMOS — RESULTS STEPS
   ============================================================ */
.oyo-qs-results {
  background-color: var(--color-cream);
}

@media (min-width: 992px) {
  .oyo-qs-results {
    padding: 60px 0;
  }
}

.oyo-qs-results-left {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.oyo-qs-results-left .oyo-btn {
  margin-top: auto;
  align-self: center;
}

@media (min-width: 992px) {
  .oyo-qs-results-left .oyo-btn {
    align-self: flex-start;
  }
}

.oyo-qs-results-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  color: var(--color-teal);
  margin-bottom: 32px;
}

.oyo-qs-results-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 45px;
}

.oyo-qs-step {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--color-white);
  padding: 16px 10px;
}

.oyo-qs-step-num {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background-color: var(--color-teal);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-white);
  font-weight: 400;
}

.oyo-qs-step-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.oyo-qs-step-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-teal);
  margin: 0;
}

.oyo-qs-step-desc {
  font-size: 16px;
  color: var(--color-dark);
  margin: 0;
}

.oyo-qs-results-image {
  border-radius: 16px;
  overflow: hidden;
  order: -1;
}

.oyo-qs-results-image img {
  width: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .oyo-qs-results-title {
    font-size: 48px;
  }

  .oyo-qs-results-image {
    order: 0;
  }
}

/* ============================================================
   QUIÉNES SOMOS — TEAM
   ============================================================ */
.oyo-qs-team {
  background-color: var(--color-dark);
  padding: 0;
}

.oyo-qs-team-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
}

.oyo-qs-team-photo {
  overflow: hidden;
  min-height: 300px;
}

.oyo-qs-team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.oyo-qs-team-content {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.oyo-qs-team-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: var(--color-teal);
  margin: 0;
}

.oyo-qs-team-body {
  font-size: 18px;
  color: var(--color-teal);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.oyo-qs-team-body p {
  margin: 0;
}

.oyo-qs-team-body strong {
  color: var(--color-teal);
  font-weight: 700;
}

@media (min-width: 992px) {
  .oyo-qs-team {
    padding: 0 24px;
  }

  .oyo-qs-team-container {
    grid-template-columns: 1fr 1fr;
  }

  .oyo-qs-team-photo {
    min-height: auto;
  }

  .oyo-qs-team-content {
    padding: 80px 0 80px 56px;
  }

  .oyo-qs-team-title {
    font-size: 48px;
  }
}