/* ---- Variables ---- */
:root {
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  --font-display: "Poppins", var(--font-sans);

  /* Light theme colors (default) */
  --bg: #f6fbfb; /* very light */
  --panel: #ffffff;
  --muted: #64707a;
  --text: #072029;
  --plans-text: #0b6b75;
  --plans-duration: #555;
  --accent: #1f9aa6; /* teal-ish */
  --accent-2: #0b6b75;
  --primary: linear-gradient(135deg, #2aa1ad 0%, #0b6b75 100%);
  --card-shadow: 0 6px 20px rgba(10, 30, 40, 0.06);

  /* Utility sizes */
  --container: 1150px;
  --radius: 14px;
  --gap: 24px;
  --section-pad: 64px;
}

/* Dark mode overrides */
body.dark {
  --bg: #071923;
  --panel: #06262b;
  --muted: #98aab0;
  --text: #e6f6f7;
  --plans-text: #ffffff;
  --plans-duration: #ffffff;
  --accent: #3bd2d7;
  --accent-2: #2aa1ad;
  --primary: linear-gradient(135deg, #0d8c92 0%, #064d54 100%);
  --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

body.menu-open {
  overflow: hidden;
}

/* =========== Base =========== */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-size: 16px;
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Utility buttons */
.btn {
  font-family: var(--font-display);
  font-size: 14px;
  border-radius: 10px;
  padding: 8px 16px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  text-align: center;
}
.btn.primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--card-shadow);
}
.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(7, 32, 41, 0.06);
}
.plan-card .btn.primary {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-header .btn.primary {
  font-size: 14px;
  gap: 3px;
}

/* icon button (theme toggle) */
.icon-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  margin-left: 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
  border-bottom: 1px solid rgba(7, 32, 41, 0.03);
}
body.dark .site-header {
  background: linear-gradient(180deg, rgba(6, 38, 43, 0.5), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
}
.section-header {
  display: flex;
  align-items: center;
}
.brand .logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-2);
  font-size: 20px;
  text-decoration: none !important;
}
a.brand {
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
}
.brand-col {
  display: flex;
  gap: 10px;
}
.brand-col .logo-mark {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-2);
  font-size: 20px;
  text-decoration: none !important;
}

/* nav */
.main-nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* hamburger */
.hamburger {
  display: none;
  width: 40px;
  height: 36px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 6px 8px;
  border-radius: 2px;
  width: 18px;
}
body.dark .hamburger span {
  background: var(--text);
}

/* HERO */
.hero {
  padding: 30px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: center;
}
.hero-left .eyebrow {
  font-weight: 700;
  color: var(--accent-2);
  font-family: var(--font-display);
  margin-bottom: 10px;
}
.hero-left h1 {
  font-family: var(--font-display);
  font-size: 46px;
  margin: 0 0 18px;
  line-height: 1.02;
}
.hero-left h1 .accent {
  color: var(--accent-2);
  display: block;
}
.lead {
  color: var(--muted);
  max-width: 540px;
}
.lead-form {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}
.lead-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(7, 32, 41, 0.06);
  font-size: 15px;
  background: transparent;
  color: var(--text);
}
.partners {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 400;
  font-size: 14px;
}

/* hero mockup */
.card-visual {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}

.card-visual img {
  max-width: 400px;
}
.mockup {
  width: 360px;
  background: var(--panel);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(7, 32, 41, 0.03);
}
.mockup-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(7, 32, 41, 0.04);
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}
.invoice-amount {
  font-weight: 700;
  font-size: 20px;
}
.mockup-bottom {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn.full {
  width: 100%;
}

/* FEATURES */
.features {
  padding: 20px 0;
}
.feature-cards {
  background: var(--panel);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
}
.feature {
  padding: 28px;
  border-radius: 14px 14px 0 0;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
}
.mini-features {
  display: flex;
}
.mini-features:first-child {
  border-radius: 0 0 0 14px;
  color: red;
  background: red;
}
.mini {
  padding: 20px;
  flex: 1;
  text-align: center;
}
.feature .eyebrow {
  color: var(--accent-2);
  font-weight: 600;
}
.feauture-title {
  font-size: 32px;
  line-height: 1.02;
  font-family: var(--font-display);
  margin: 20px 0;
}

/* WHY */
.why {
  padding: 40px 0;
}
.why-eyebrow {
  color: var(--accent-2);
  text-align: center;
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 1em;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  margin-top: 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5em;
  align-items: stretch;
}
.stat-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 28px 5px;
  box-shadow: var(--card-shadow);
  border-radius: 14px;
  justify-content: center;
  background: var(--panel);
  text-align: center;
}

.stat-big {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: var(--accent-2);
}
.stat-label {
  margin: 0;
}

.stat-title-text {
  margin-bottom: 0;
}
.chart-card {
  display: flex;
  padding: 15px 28px 0;
  justify-content: center;
  background: var(--panel);
  box-shadow: var(--card-shadow);
  border-radius: 14px;
  flex-direction: column;
  align-items: center;
}
.chart-placeholder {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.chart-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: var(--accent-2);
}

/* RESERVE (dark band) */
.reserve {
  background: var(--accent-2);
  color: white;
  padding: 44px 0;
  margin: 28px 0;
}
body.dark .reserve {
  background: linear-gradient(90deg, var(--accent-2), #073b40);
}
.reserve .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
}
.reserve-left h2 {
  font-size: 22px;
  margin: 20px 0;
  font-weight: 700;
}
.steps {
  display: flex;
  gap: 12px;
}
.step {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
  border-radius: 12px;
  min-width: 220px;
}
.step-num {
  width: 120px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 4em;
}

/* STATS & PRICING */
.stats-pricing {
  padding: 40px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.stats {
  /* flex: 1;
  min-width: 260px;
  text-align: center; */
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
  overflow-wrap: break-word;
}
.stats-eyebrow {
  color: var(--accent-2);
  font-weight: 600;
}
.stats-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 1rem;
}
.stats-text {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 150px;
}
.kpis {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.kpis > div {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 100px;
  min-width: 120px;
  max-width: 200px;
  text-align: center;
}
.kpis-number {
  font-size: 2.5em;
}
.plans {
  display: flex;
  gap: 18px;
  align-items: stretch;
}
.plans-eyebrow {
  color: var(--accent-2);
  font-weight: 600;
  text-align: center;
}
.plan-card {
  display: flex; 
  flex-direction: column; 
  justify-content: space-between;
  box-sizing: border-box;
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 2rem;
  background: #fff;
  text-align: center;
  box-shadow: var(--card-shadow);
}

.plan-card.accent {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.02)
  );
  border: 1px solid rgba(7, 32, 41, 0.04);
}
.plan-card.light {
  background: var(--panel);
  color: var(--muted);
}

.plan-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plans-text);
  margin: 0;
}
.plan-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 1rem;
}
.price-old {
  text-decoration: line-through;
  color: #abb8c3;
  display: block;
}
.price-new {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--plans-text);
  display: block;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}
.plan-benefits {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}
.plan-benefits li {
  margin-bottom: 0.3rem;
}
.plan-duration {
  color: var(--plans-duration);
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.btn.ghost {
  background: #111;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
}

/* CTA */
.cta {
  padding: 48px 0;
}
.cta-card {
  background: var(--panel);
  padding: 28px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  display: grid;
  align-items: center;
  gap: 16px;
  grid-template-columns: 2fr 1fr;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 25px;
  margin-top: 10px;
  line-height: 1.02;
}

/* FOOTER */
.site-footer {
  padding: 36px 0;
  background: transparent;
  border-top: 1px solid rgba(7, 32, 41, 0.03);
}
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 2rem;
  }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer-bottom {
  padding-top: 18px;
  text-align: center;
  color: var(--muted);
}
.footer-menu {
  padding: 0;
  max-height: none !important;
}
.footer-menu li {
  list-style: none;
}
.footer-menu li a {
  color: var(--muted);
  text-decoration: none;
}
.links-col h5 {
  font-size: 15px;
  margin: 0;
  cursor: default;
}

.links-col h5::after {
  content: none;
}

/* Footer accordion styles */
.footer-accordion-trigger {
  position: relative;
  user-select: none;
  transition: color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-icon {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  display: none;
  font-weight: 300;
}
.footer-accordion-content {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.footer-accordion-content {
    max-height: none !important;
    opacity: 1 !important;
  }
  
  .footer-accordion-trigger {
    cursor: default;
  }
  
  .accordion-icon {
    display: none !important;
  }


  /* Language Toggle Button */
.lang-btn {
  background: transparent;
  border: 1px solid rgba(7, 32, 41, 0.1);
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  transition: all 0.3s ease;
  margin-left: 8px;
}

.lang-btn:hover {
  background: var(--accent-2);
  color: white;
  border-color: var(--accent-2);
}
.section-header .lang-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

body.dark .lang-btn {
  border-color: rgba(255, 255, 255, 0.1);
}

.lang-label {
  display: inline-block;
  min-width: 20px;
  text-align: center;
}


/* =========== Responsive =========== */

/* ===== Mobile full-screen overlay (left column) ===== */
:root {
  --nav-bg-light: rgba(255, 255, 255, 0.98);
  --nav-bg-dark: rgba(6, 10, 15, 0.95);
  --nav-text: #0b1220;
  --nav-accent: var(--primary, #2563eb);
  --nav-width: min(420px, 92%);
  --backdrop-bg: rgba(0, 0, 0, 0.38);
  --panel-shadow: 0 10px 30px rgba(5, 10, 20, 0.12);
  --transition-fast: 280ms;
  --transition-medium: 380ms;
}

/* adaptar según tema con data-theme en <html> o <body> */
html[data-theme="dark"] .mobile-nav-panel {
  background: var(--nav-bg-dark);
  color: #e6eef8;
}
html:not([data-theme="dark"]) .mobile-nav-panel {
  background: var(--nav-bg-light);
  color: var(--nav-text);
}

/* overlay base */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: auto 1fr; /* panel left + backdrop right */
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.992);
  transition: opacity var(--transition-medium) ease,
    transform var(--transition-medium) ease;
}

/* when open */
.mobile-nav-overlay.open {
  pointer-events: auto;
  opacity: 1;
  transform: scale(1);
}

/* left panel */
.mobile-nav-panel {
  /* width: var(--nav-width);
  max-width: var(--nav-width); */
  min-height: 100vh;
  box-shadow: var(--panel-shadow);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  transform-origin: left center;
  will-change: transform, opacity;
  /* animation: fade + slight zoom-in */
  opacity: 0;
  transform: translateX(-6px) scale(0.996);
  transition: opacity var(--transition-medium) ease,
    transform var(--transition-medium) ease;
}

/* panel visible state */
.mobile-nav-overlay.open .mobile-nav-panel {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* close button */
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  padding: 6px 8px;
  margin-left: auto;
  cursor: pointer;
  color: inherit;
}

/* backdrop (right area) */
.mobile-nav-backdrop {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  /* the visible dim is introduced by pseudo overlay using backdrop */
  width: 100%;
  min-height: 100vh;
  backdrop-filter: none;
  transition: background var(--transition-fast) ease;
}

/* make a subtle darkening of right side for effect (adapts to theme) */
html[data-theme="dark"] .mobile-nav-backdrop {
  background: rgba(0, 0, 0, 0.35);
}
html:not([data-theme="dark"]) .mobile-nav-backdrop {
  background: rgba(0, 0, 0, 0.28);
}

/* Menu list (left column) */
.mobile-nav-list {
  margin: 8px 0 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* each menu item */
.mobile-nav-list li {
  margin: 0;
}
.mobile-nav-list li a {
  display: block;
  text-decoration: none;
  font-size: 1.06rem;
  font-weight: 500;
  padding: 10px 40px 10px 6px;
  color: inherit;
  border-radius: 6px;
  transition: background var(--transition-fast) ease,
    color var(--transition-fast) ease, transform var(--transition-fast);
}
.mobile-nav-list li a:focus,
.mobile-nav-list li a:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateX(2px);
  outline: none;
}
html[data-theme="dark"] .mobile-nav-list li a:focus,
html[data-theme="dark"] .mobile-nav-list li a:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* emphasized CTA item style (if you have a menu item with class .cta) */
.mobile-nav-list li.menu-item-cta a,
.mobile-nav-list li a.cta {
  background: var(--nav-accent);
  color: white !important;
  padding: 12px 14px;
  font-weight: 600;
}

/* tablet */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr 380px;
  }
  .main-nav ul {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
  .mobile-nav {
    display: block;
  }
  /* .mobile-nav-overlay {
    display: none !important;
  } */
  body.no-scroll {
    height: 100vh;
    overflow: hidden;
    touch-action: none;
  }
}

/* mobile */
@media (max-width: 720px) {
  .brand-col {
    padding: 15px 0;
}
  .site-header .btn.primary {
    font-size: 0.7rem;
    gap: 0px;
    padding: 6px 8px;
  }
  .hamburger {
    padding: 0 2px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .hero-left h1 {
    font-size: 36px;
  }
  .card-visual img {
    max-width: 330px;
  }
  .card-visual {
    justify-content: center;
    flex-direction: row-reverse;
  }
  .feature-cards {
    padding: 20px;
  }
  .feature {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 28px 0;
  }
  .icon-btn {
    margin-left: 4px;
    padding: 0;
  }
  .kpis {
    gap: 12px;
  }

  .kpis-number {
    font-size: 2em;
  }
  .kpis-text {
    font-size: 0.8em;
  }
  .mini {
    padding: 5px 20px;
  }
  .mini img {
    max-width: 120px;
  }
  .mini-features {
    flex-direction: column;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .reserve {
    padding: 20px 0;
  }
  .reserve .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .reserve-left h2 {
    margin: 10px 0 15px 0px;
    padding: 0 20px;
    line-height: 1.2;
  }
  .stats {
    padding: 0 16px;
  }
  .stat-card {
    box-shadow: none;
    border-radius: 0;
  }
  .stats-text {
    padding: 0;
  }
  .step {
    padding: 10px 18px;
  }
  .steps {
    flex-direction: column;
    padding: 0 10px;
  }
  .step div h4 {
    margin: 5px 0;
  }
  .step div p {
    margin: 5px 0;
  }
  .chart-card {
    box-shadow: none;
    border-radius: 0;
  }
  .stats-title {
    line-height: 1.02;
  }
  .stats-pricing {
    flex-direction: column;
    padding: 10px 20px;
    gap: 0;
  }
  .plans {
    flex-direction: column;
    align-items: stretch;
  }
  .plan-card {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
  .plan-duration {
    margin-top: 0;
  }
  .price-new {
    margin-bottom: 0;
  }
  .cta-title {
    text-align: center;
    line-height: 1.3;
  }
  .cta-section-text > p {
    text-align: center;
  }
  .cta-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-grid {
    display: block;
    gap: 12px;
  }
  .mobile-nav[hidden] {
    display: none;
  }
  .mobile-nav {
    background: var(--panel);
    padding: 14px;
    border-top: 1px solid rgba(7, 32, 41, 0.04);
  }
  .why {
    padding: 30px 0;
  }

  .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .links-col h5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
  }
  .links-col h5::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  .links-col h5.open::after {
    content: "–";
  }
  .footer-menu {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .footer-menu li a {
    display: block;
    padding: 0.25rem 0;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-weight: 400;
  }
  .footer-menu li a:hover {
    color: #000;
  }

  /*--- footer style ----*/
.footer-accordion-trigger {
    cursor: pointer;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .accordion-icon {
    display: inline-block;
  }
  
  /* IMPORTANTE: Ocultar contenido por defecto en mobile */
  .footer-accordion-content {
    max-height: 0 !important;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
  }
  
  /* Mostrar solo cuando está activo */
  .footer-accordion-trigger.active + .footer-accordion-content {
    max-height: 500px !important;
    opacity: 1;
  }
  
  .footer-accordion-trigger.active .accordion-icon {
    transform: rotate(45deg); /* Rota el + para hacer una X */
  }
  
  .footer-accordion-trigger.active {
    color: var(--color-primary, #00a8e8);
  }
  
  /* Estilos para el menú desplegado */
  .footer-accordion-content .footer-menu {
    padding-left: 0;
    margin: 0;
  }
  
  .footer-accordion-content .footer-menu li {
    list-style: none;
    padding: 8px 0;
  }
  
  .footer-accordion-content .footer-menu a {
    color: var(--plans-duration);
    text-decoration: none;
    display: block;
    transition: color 0.2s;
  }
  
  .footer-accordion-content .footer-menu a:hover {
    color: #fff;
  }
  .lang-btn {
    font-size: 12px;
    padding: 5px 5px;
    margin-left: 4px;
  }
}

/* small tweaks for dark readability */
body.dark .mockup {
  background: #08343a;
}
