/* ═══════════════════════════════════════════════════════════════
   VIVE FUNCTIONAL / DeGraciaReboot — Design System
   Estilo: Compasivo · Natural Premium · Colores Cálidos
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ─── VARIABLES ─── */
:root {
      /* Paleta Cálida */
      --terracotta: #C1694F;
      --terracotta-d: #A35540;
      --terracotta-l: #D4866E;
      --green-deep: #3D6B4F;
      --green-light: #5A9B6F;
      --green-pale: #E8F3EC;
      --gold: #D4A853;
      --gold-light: #E8C97A;
      --sand: #FAF6F0;
      --sand-dark: #F0E8DA;
      --charcoal: #1A2B22;
      --charcoal-l: #2A3D32;
      --text-dark: #2C1810;
      --text-mid: #5A4A3E;
      --text-light: #8A7A6E;
      --white: #FFFFFF;
      --overlay: rgba(26, 43, 34, 0.7);

      /* Shadows */
      --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.06);
      --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.08);
      --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.12);
      --shadow-glow: 0 0 30px rgba(193, 105, 79, 0.15);

      /* Radius */
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 22px;
      --radius-xl: 32px;
      --radius-full: 50px;

      /* Transitions */
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --transition: 0.4s var(--ease-out);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
}

html {
      scroll-behavior: smooth;
      font-size: 16px;
}

body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--sand);
      color: var(--text-dark);
      line-height: 1.7;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
}

img {
      max-width: 100%;
      display: block;
}

a {
      color: inherit;
      text-decoration: none;
}

button {
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
}

ul,
ol {
      list-style: none;
}

h1,
h2,
h3,
h4 {
      font-family: 'Outfit', sans-serif;
      line-height: 1.2;
      color: var(--text-dark);
}

/* ─── UTILITIES ─── */
.container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
}

.section-pad {
      padding: 100px 0;
}

.text-center {
      text-align: center;
}

.section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px;
}

.section-header h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      margin-bottom: 16px;
}

.section-header p {
      font-size: 1.05rem;
      color: var(--text-mid);
      line-height: 1.8;
}

/* ─── BADGES ─── */
.badge {
      display: inline-block;
      padding: 6px 18px;
      border-radius: var(--radius-full);
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 16px;
}

.badge-terra {
      background: rgba(193, 105, 79, 0.12);
      color: var(--terracotta);
}

.badge-gold {
      background: rgba(212, 168, 83, 0.15);
      color: #8A6220;
}

.badge-green {
      background: rgba(61, 107, 79, 0.12);
      color: var(--green-deep);
}

.badge-white {
      background: rgba(255, 255, 255, 0.15);
      color: var(--white);
}

/* ─── BUTTONS ─── */
.btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: var(--radius-full);
      font-family: 'Outfit', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      transition: var(--transition);
      letter-spacing: 0.3px;
}

.btn-primary {
      background: var(--terracotta);
      color: var(--white);
      box-shadow: 0 4px 15px rgba(193, 105, 79, 0.3);
}

.btn-primary:hover {
      background: var(--terracotta-d);
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(193, 105, 79, 0.4);
}

.btn-secondary {
      background: transparent;
      color: var(--green-deep);
      border: 2px solid var(--green-deep);
}

.btn-secondary:hover {
      background: var(--green-deep);
      color: var(--white);
      transform: translateY(-2px);
}

.btn-gold {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--charcoal);
      box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(212, 168, 83, 0.4);
}

.btn-white {
      background: var(--white);
      color: var(--terracotta);
      box-shadow: var(--shadow-md);
}

.btn-white:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 16px 0;
      transition: var(--transition);
}

.nav.scrolled {
      background: rgba(250, 246, 240, 0.95);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow-sm);
      padding: 10px 0;
}

.nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
}

.nav-logo {
      font-family: 'Outfit', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--charcoal);
}

.nav-logo span {
      color: var(--terracotta);
      font-weight: 300;
}

.nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
}

.nav-links a {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--text-mid);
      transition: var(--transition);
      position: relative;
}

.nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--terracotta);
      transition: var(--transition);
}

.nav-links a:hover {
      color: var(--terracotta);
}

.nav-links a:hover::after {
      width: 100%;
}

.nav-cta {
      padding: 10px 24px !important;
      background: var(--terracotta) !important;
      color: var(--white) !important;
      border-radius: var(--radius-full) !important;
      font-weight: 600 !important;
}

.nav-cta::after {
      display: none !important;
}

.nav-cta:hover {
      background: var(--terracotta-d) !important;
      transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      z-index: 1001;
}

.hamburger span {
      width: 24px;
      height: 2px;
      background: var(--charcoal);
      transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
      opacity: 0;
}

.hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */
.hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(160deg, var(--charcoal) 0%, #1D3328 40%, #243D30 100%);
      position: relative;
      overflow: hidden;
      padding-top: 80px;
}

.hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
            radial-gradient(circle at 20% 50%, rgba(193, 105, 79, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 30%, rgba(212, 168, 83, 0.06) 0%, transparent 50%),
            radial-gradient(circle at 60% 80%, rgba(61, 107, 79, 0.1) 0%, transparent 50%);
}

.hero-grid {
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
}

.hero-content {
      color: var(--white);
}

.hero-badge {
      margin-bottom: 20px;
}

.hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 800;
      color: var(--white);
      margin-bottom: 20px;
      line-height: 1.1;
}

.hero h1 .highlight {
      background: linear-gradient(135deg, var(--terracotta-l), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}

.hero-sub {
      font-size: 1.15rem;
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.75);
      margin-bottom: 16px;
      max-width: 520px;
}

.hero-quote {
      font-family: 'Outfit', sans-serif;
      font-size: 1.05rem;
      font-style: italic;
      color: var(--gold-light);
      margin-bottom: 32px;
      padding-left: 16px;
      border-left: 3px solid var(--gold);
}

.hero-stats {
      display: flex;
      gap: 32px;
      margin-bottom: 36px;
}

.hero-stat {
      text-align: center;
}

.hero-stat .num {
      font-family: 'Outfit', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
}

.hero-stat .label {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 1px;
}

.hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
}

.hero-visual {
      display: flex;
      align-items: center;
      justify-content: center;
}

.hero-visual-card {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-xl);
      padding: 40px;
      width: 100%;
      max-width: 440px;
}

.hero-visual-card h3 {
      color: var(--gold);
      font-size: 1.2rem;
      margin-bottom: 24px;
}

.signal-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
}

.signal-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
      padding: 10px 16px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: var(--radius-md);
      transition: var(--transition);
}

.signal-item:hover {
      background: rgba(193, 105, 79, 0.12);
      transform: translateX(4px);
}

.signal-icon {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(193, 105, 79, 0.15);
      border-radius: 50%;
      font-size: 1.1rem;
      flex-shrink: 0;
}

.scroll-indicator {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, 0.4);
      font-size: 0.8rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      animation: bounce 2s ease infinite;
}

@keyframes bounce {

      0%,
      100% {
            transform: translateX(-50%) translateY(0);
      }

      50% {
            transform: translateX(-50%) translateY(8px);
      }
}

/* ═══════════════════════════════════════
   MÉTODO DE GRACIA — 5 PILARES
   ═══════════════════════════════════════ */
.pillars-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
}

.pillar-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 30px 20px;
      text-align: center;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0, 0, 0, 0.04);
      position: relative;
      overflow: hidden;
}

.pillar-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--terracotta), var(--gold));
      opacity: 0;
      transition: var(--transition);
}

.pillar-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
}

.pillar-card:hover::before {
      opacity: 1;
}

.pillar-icon {
      font-size: 2.4rem;
      margin-bottom: 14px;
}

.pillar-card h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
}

.pillar-card p {
      font-size: 0.85rem;
      color: var(--text-mid);
      line-height: 1.5;
}

.pillar-pct {
      display: inline-block;
      margin-top: 12px;
      font-family: 'Outfit', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--terracotta);
}

/* GRACIA Acrostic */
.gracia-section {
      background: var(--charcoal);
      color: var(--white);
}

.gracia-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
      margin-top: 50px;
}

.gracia-letter {
      text-align: center;
      padding: 30px 14px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: var(--transition);
}

.gracia-letter:hover {
      background: rgba(193, 105, 79, 0.12);
      transform: translateY(-4px);
}

.gracia-letter .letter {
      font-family: 'Outfit', sans-serif;
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--gold);
      margin-bottom: 8px;
}

.gracia-letter .meaning {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.5;
}

/* ═══════════════════════════════════════
   LEYES DEL CUERPO
   ═══════════════════════════════════════ */
.laws-section {
      background: linear-gradient(180deg, var(--sand) 0%, var(--sand-dark) 100%);
}

.laws-carousel {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
}

.law-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0, 0, 0, 0.04);
      transition: var(--transition);
      position: relative;
}

.law-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
}

.law-number {
      font-family: 'Outfit', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--terracotta);
      opacity: 0.3;
      margin-bottom: 8px;
}

.law-card h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.3;
}

.law-card p {
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.6;
}

.law-tag {
      display: inline-block;
      padding: 4px 12px;
      background: var(--green-pale);
      color: var(--green-deep);
      border-radius: var(--radius-full);
      font-size: 0.72rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 14px;
}

.laws-nav {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 32px;
}

.laws-nav button {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--white);
      box-shadow: var(--shadow-sm);
      font-size: 1.2rem;
      color: var(--text-mid);
      transition: var(--transition);
}

.laws-nav button:hover {
      background: var(--terracotta);
      color: var(--white);
}

/* ═══════════════════════════════════════
   MAPA DE NIVELES
   ═══════════════════════════════════════ */
.levels-section {
      background: var(--white);
}

.levels-timeline {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
}

.levels-timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 3px;
      background: linear-gradient(180deg, var(--terracotta), var(--green-deep), var(--gold));
      transform: translateX(-50%);
}

.level-item {
      display: grid;
      grid-template-columns: 1fr 60px 1fr;
      align-items: center;
      gap: 0;
      margin-bottom: 40px;
}

.level-item:nth-child(even) .level-content {
      grid-column: 3;
      text-align: left;
}

.level-item:nth-child(even) .level-spacer {
      grid-column: 1;
}

.level-content {
      background: var(--sand);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
}

.level-content:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-md);
}

.level-dot {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--terracotta);
      border: 4px solid var(--white);
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      color: var(--white);
      font-size: 0.9rem;
      margin: 0 auto;
      z-index: 2;
      position: relative;
}

.level-content h3 {
      font-size: 1.05rem;
      margin-bottom: 4px;
}

.level-content .level-name {
      font-size: 0.82rem;
      color: var(--terracotta);
      font-weight: 600;
      margin-bottom: 8px;
}

.level-content p {
      font-size: 0.85rem;
      color: var(--text-mid);
      line-height: 1.6;
}

.level-content .level-criteria {
      margin-top: 10px;
      font-size: 0.78rem;
      color: var(--green-deep);
      font-weight: 600;
}

/* ═══════════════════════════════════════
   PROGRAMAS (CARDS)
   ═══════════════════════════════════════ */
.programs-section {
      background: linear-gradient(180deg, var(--sand-dark) 0%, var(--sand) 100%);
}

.programs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
}

.program-card {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 36px 28px;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
}

.program-card.featured {
      background: var(--charcoal);
      color: var(--white);
      box-shadow: var(--shadow-lg);
      transform: scale(1.03);
}

.program-card.featured h3,
.program-card.featured .program-price {
      color: var(--white);
}

.program-card.featured .program-desc {
      color: rgba(255, 255, 255, 0.7);
}

.program-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
}

.program-card.featured:hover {
      transform: scale(1.03) translateY(-6px);
}

.program-label {
      display: inline-block;
      padding: 4px 14px;
      border-radius: var(--radius-full);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 16px;
}

.program-label.free {
      background: rgba(90, 155, 111, 0.15);
      color: var(--green-deep);
}

.program-label.monthly {
      background: rgba(193, 105, 79, 0.15);
      color: var(--terracotta);
}

.program-label.annual {
      background: rgba(212, 168, 83, 0.2);
      color: var(--gold);
}

.program-card h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 8px;
}

.program-price {
      font-family: 'Outfit', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--terracotta);
      margin-bottom: 8px;
}

.program-price .period {
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--text-light);
}

.program-desc {
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.7;
      margin-bottom: 20px;
}

.program-features {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 24px;
      flex-grow: 1;
}

.program-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.88rem;
}

.program-features li::before {
      content: '✓';
      font-weight: 700;
      color: var(--green-deep);
      flex-shrink: 0;
}

.program-card.featured .program-features li::before {
      color: var(--gold);
}

/* ═══════════════════════════════════════
   RETO 7D SECTION
   ═══════════════════════════════════════ */
.reto-section {
      background: linear-gradient(160deg, var(--terracotta) 0%, var(--terracotta-d) 100%);
      color: var(--white);
      position: relative;
      overflow: hidden;
}

.reto-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 20%, rgba(212, 168, 83, 0.15) 0%, transparent 60%);
}

.reto-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
}

.reto-content h2 {
      color: var(--white);
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      margin-bottom: 16px;
}

.reto-content p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 24px;
}

.reto-includes {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 32px;
}

.reto-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.9);
}

.reto-item .icon {
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
}

.reto-victory {
      background: rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
      padding: 28px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
}

.reto-victory h3 {
      color: var(--gold-light);
      font-size: 1.1rem;
      margin-bottom: 16px;
}

.reto-victory-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.95rem;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reto-victory-item:last-child {
      border-bottom: none;
}

/* ═══════════════════════════════════════
   KANEJAWE
   ═══════════════════════════════════════ */
.kanejawe-section {
      background: var(--charcoal);
      color: var(--white);
      position: relative;
      overflow: hidden;
}

.kanejawe-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
            radial-gradient(circle at 30% 70%, rgba(61, 107, 79, 0.12) 0%, transparent 50%),
            radial-gradient(circle at 70% 20%, rgba(212, 168, 83, 0.08) 0%, transparent 50%);
}

.kanejawe-header {
      position: relative;
      z-index: 2;
}

.kanejawe-header h2 {
      color: var(--white);
}

.kanejawe-header p {
      color: rgba(255, 255, 255, 0.65);
}

.kanejawe-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
      z-index: 2;
}

.retreat-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-xl);
      padding: 32px;
      transition: var(--transition);
}

.retreat-card:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-4px);
}

.retreat-card .retreat-icon {
      font-size: 2.4rem;
      margin-bottom: 16px;
}

.retreat-card h3 {
      color: var(--gold);
      font-size: 1.1rem;
      margin-bottom: 8px;
}

.retreat-card .retreat-format {
      font-size: 0.82rem;
      color: var(--terracotta-l);
      font-weight: 600;
      margin-bottom: 12px;
}

.retreat-card p {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
}

.retreat-features {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
}

.retreat-features li {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.7);
      display: flex;
      align-items: center;
      gap: 8px;
}

.retreat-features li::before {
      content: '🌿';
      font-size: 0.7rem;
}

/* ═══════════════════════════════════════
   QUIZ SECTION
   ═══════════════════════════════════════ */
.quiz-section {
      background: var(--white);
}

.quiz-container {
      max-width: 660px;
      margin: 0 auto;
      background: var(--sand);
      border-radius: var(--radius-xl);
      padding: 48px;
      box-shadow: var(--shadow-lg);
}

.quiz-progress {
      display: flex;
      gap: 6px;
      margin-bottom: 32px;
}

.quiz-progress .step {
      flex: 1;
      height: 4px;
      background: rgba(0, 0, 0, 0.08);
      border-radius: 2px;
      transition: var(--transition);
}

.quiz-progress .step.active {
      background: var(--terracotta);
}

.quiz-progress .step.done {
      background: var(--green-deep);
}

.quiz-question {
      display: none;
}

.quiz-question.active {
      display: block;
      animation: fadeIn 0.4s var(--ease-out);
}

@keyframes fadeIn {
      from {
            opacity: 0;
            transform: translateY(10px);
      }

      to {
            opacity: 1;
            transform: translateY(0);
      }
}

.quiz-question h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
}

.quiz-options {
      display: flex;
      flex-direction: column;
      gap: 10px;
}

.quiz-option {
      padding: 14px 20px;
      background: var(--white);
      border: 2px solid rgba(0, 0, 0, 0.06);
      border-radius: var(--radius-md);
      font-size: 0.95rem;
      text-align: left;
      transition: var(--transition);
      cursor: pointer;
}

.quiz-option:hover {
      border-color: var(--terracotta);
      background: rgba(193, 105, 79, 0.04);
}

.quiz-option.selected {
      border-color: var(--terracotta);
      background: rgba(193, 105, 79, 0.08);
}

.quiz-result {
      display: none;
      text-align: center;
}

.quiz-result.active {
      display: block;
      animation: fadeIn 0.5s var(--ease-out);
}

.quiz-level-badge {
      display: inline-block;
      padding: 12px 32px;
      background: linear-gradient(135deg, var(--terracotta), var(--gold));
      color: var(--white);
      border-radius: var(--radius-full);
      font-family: 'Outfit', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 16px;
}

.quiz-result p {
      font-size: 0.95rem;
      color: var(--text-mid);
      margin-bottom: 20px;
      line-height: 1.7;
}

.quiz-disclaimer {
      background: rgba(212, 168, 83, 0.1);
      border-left: 3px solid var(--gold);
      padding: 12px 16px;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      font-size: 0.82rem;
      color: var(--text-mid);
      margin-top: 20px;
      text-align: left;
}

/* ═══════════════════════════════════════
   TESTIMONIOS
   ═══════════════════════════════════════ */
.testimonials-section {
      background: var(--sand);
}

.testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
}

.testimonial-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
}

.testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
}

.testimonial-stars {
      color: var(--gold);
      font-size: 0.9rem;
      margin-bottom: 14px;
}

.testimonial-card blockquote {
      font-size: 0.92rem;
      color: var(--text-mid);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 16px;
}

.testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
}

.testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--terracotta), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 0.9rem;
}

.testimonial-author .name {
      font-weight: 600;
      font-size: 0.9rem;
}

.testimonial-author .detail {
      font-size: 0.78rem;
      color: var(--text-light);
}

/* ═══════════════════════════════════════
   DISCLAIMER
   ═══════════════════════════════════════ */
.disclaimer-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(26, 43, 34, 0.95);
      backdrop-filter: blur(10px);
      color: var(--white);
      padding: 14px 24px;
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      font-size: 0.82rem;
      transform: translateY(100%);
      transition: var(--transition);
}

.disclaimer-banner.visible {
      transform: translateY(0);
}

.disclaimer-banner p {
      max-width: 800px;
      line-height: 1.5;
}

.disclaimer-close {
      padding: 6px 16px;
      background: var(--terracotta);
      color: var(--white);
      border-radius: var(--radius-full);
      font-size: 0.78rem;
      font-weight: 600;
      flex-shrink: 0;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
      background: var(--charcoal);
      color: rgba(255, 255, 255, 0.6);
      padding: 60px 0 30px;
}

.footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
}

.footer-brand .brand-name {
      font-family: 'Outfit', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 12px;
}

.footer-brand .brand-name span {
      color: var(--terracotta-l);
}

.footer-brand p {
      font-size: 0.85rem;
      line-height: 1.7;
      margin-bottom: 16px;
}

.footer h4 {
      color: var(--white);
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 16px;
}

.footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
}

.footer-links a {
      font-size: 0.85rem;
      transition: var(--transition);
}

.footer-links a:hover {
      color: var(--terracotta-l);
}

.footer-disclaimer {
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 0.78rem;
      line-height: 1.7;
      text-align: center;
}

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════ */
.whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 54px;
      height: 54px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      z-index: 998;
      transition: var(--transition);
      font-size: 1.5rem;
      text-decoration: none;
}

.whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ═══════════════════════════════════════
   ANIMATIONS (Fade Up)
   ═══════════════════════════════════════ */
.fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-up.visible {
      opacity: 1;
      transform: translateY(0);
}

.stagger-1 {
      transition-delay: 0.05s;
}

.stagger-2 {
      transition-delay: 0.1s;
}

.stagger-3 {
      transition-delay: 0.15s;
}

.stagger-4 {
      transition-delay: 0.2s;
}

.stagger-5 {
      transition-delay: 0.25s;
}

.stagger-6 {
      transition-delay: 0.3s;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
      .pillars-grid {
            grid-template-columns: repeat(3, 1fr);
      }

      .laws-carousel {
            grid-template-columns: repeat(2, 1fr);
      }

      .gracia-grid {
            grid-template-columns: repeat(3, 1fr);
      }

      .footer-grid {
            grid-template-columns: repeat(2, 1fr);
      }
}

@media (max-width: 768px) {
      .section-pad {
            padding: 70px 0;
      }

      .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 320px;
            height: 100vh;
            background: var(--sand);
            flex-direction: column;
            padding: 80px 32px 32px;
            gap: 20px;
            transition: var(--transition);
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
      }

      .nav-links.open {
            right: 0;
      }

      .hamburger {
            display: flex;
      }

      .hero-grid {
            grid-template-columns: 1fr;
            gap: 40px;
      }

      .hero-visual {
            display: none;
      }

      .hero {
            padding-top: 100px;
            min-height: auto;
            padding-bottom: 60px;
      }

      .hero-stats {
            gap: 20px;
      }

      .pillars-grid {
            grid-template-columns: repeat(2, 1fr);
      }

      .gracia-grid {
            grid-template-columns: repeat(3, 1fr);
      }

      .laws-carousel {
            grid-template-columns: 1fr;
      }

      .programs-grid {
            grid-template-columns: 1fr;
      }

      .program-card.featured {
            transform: none;
      }

      .program-card.featured:hover {
            transform: translateY(-6px);
      }

      .reto-grid {
            grid-template-columns: 1fr;
            gap: 40px;
      }

      .reto-includes {
            grid-template-columns: 1fr;
      }

      .levels-timeline::before {
            left: 20px;
      }

      .level-item {
            grid-template-columns: 40px 1fr;
            gap: 16px;
      }

      .level-item:nth-child(even) .level-content {
            grid-column: 2;
      }

      .level-item:nth-child(even) .level-spacer {
            display: none;
      }

      .level-dot {
            width: 36px;
            height: 36px;
            font-size: 0.8rem;
      }

      .kanejawe-grid {
            grid-template-columns: 1fr;
      }

      .testimonials-grid {
            grid-template-columns: 1fr;
      }

      .footer-grid {
            grid-template-columns: 1fr;
      }

      .quiz-container {
            padding: 28px 20px;
      }
}

@media (max-width: 480px) {
      .pillars-grid {
            grid-template-columns: 1fr;
      }

      .gracia-grid {
            grid-template-columns: repeat(2, 1fr);
      }

      .hero-btns {
            flex-direction: column;
      }

      .hero-stats {
            flex-direction: column;
            gap: 16px;
      }
}

/* ═══════════════════════════════════════════════════════════════
   INTERIOR PAGES — Shared Styles
   ═══════════════════════════════════════════════════════════════ */

/* Page Hero (shorter) */
.page-hero {
      padding: 140px 0 60px;
      background: linear-gradient(160deg, var(--charcoal) 0%, #1D3328 40%, #243D30 100%);
      color: var(--white);
      position: relative;
      overflow: hidden;
}

.page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 60%, rgba(193, 105, 79, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(212, 168, 83, 0.06) 0%, transparent 50%);
}

.page-hero .container {
      position: relative;
      z-index: 2;
}

.page-hero h1 {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 800;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.1;
}

.page-hero h1 .highlight {
      background: linear-gradient(135deg, var(--terracotta-l), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
}

.page-hero p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.7);
      max-width: 600px;
      line-height: 1.7;
}

.page-hero .breadcrumb {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 16px;
}

.page-hero .breadcrumb a {
      color: var(--terracotta-l);
}

.page-hero .breadcrumb a:hover {
      color: var(--gold);
}

/* Content Blocks */
.content-block {
      max-width: 800px;
      margin: 0 auto;
}

.content-block h2 {
      font-size: 1.6rem;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 2px solid rgba(193, 105, 79, 0.15);
}

.content-block h3 {
      font-size: 1.15rem;
      margin: 24px 0 10px;
      color: var(--terracotta);
}

.content-block p,
.content-block li {
      font-size: 0.95rem;
      color: var(--text-mid);
      line-height: 1.8;
}

.content-block ul {
      padding-left: 0;
}

.content-block ul li {
      padding: 6px 0;
      padding-left: 20px;
      position: relative;
}

.content-block ul li::before {
      content: '▸';
      position: absolute;
      left: 0;
      color: var(--terracotta);
      font-weight: 700;
}

/* Evidence Tags */
.evidence {
      display: none !important;
      padding: 4px 12px;
      background: rgba(61, 107, 79, 0.08);
      border: 1px solid rgba(61, 107, 79, 0.15);
      border-radius: var(--radius-sm);
      font-size: 0.72rem;
      color: var(--green-deep);
      margin-top: 8px;
      font-family: 'Inter', monospace;
}

/* Curriculum Grid */
.curriculum-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
}

.module-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0, 0, 0, 0.04);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
}

.module-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--terracotta), var(--gold));
}

.module-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
}

.module-card .mod-number {
      font-family: 'Outfit', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--terracotta);
      margin-bottom: 8px;
}

.module-card h3 {
      font-size: 1.05rem;
      margin-bottom: 10px;
}

.module-card p {
      font-size: 0.85rem;
      color: var(--text-mid);
      line-height: 1.6;
      margin-bottom: 12px;
}

.module-card .mod-actions {
      padding-top: 12px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.module-card .mod-actions li {
      font-size: 0.82rem;
      color: var(--text-mid);
      padding: 4px 0 4px 16px;
      position: relative;
}

.module-card .mod-actions li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--green-deep);
      font-weight: 700;
      font-size: 0.78rem;
}

.module-card .mod-signals {
      margin-top: 10px;
      font-size: 0.78rem;
      color: var(--green-deep);
      font-weight: 600;
}

/* Day Cards (Reto 7D) */
.days-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
}

.day-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0, 0, 0, 0.04);
      transition: var(--transition);
}

.day-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
}

.day-card .day-badge {
      display: inline-block;
      padding: 6px 16px;
      border-radius: var(--radius-full);
      font-family: 'Outfit', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 12px;
}

.day-badge.d0 {
      background: rgba(0, 0, 0, 0.06);
      color: var(--text-mid);
}

.day-badge.d1 {
      background: rgba(193, 105, 79, 0.12);
      color: var(--terracotta);
}

.day-badge.d2 {
      background: rgba(61, 107, 79, 0.12);
      color: var(--green-deep);
}

.day-badge.d3 {
      background: rgba(212, 168, 83, 0.15);
      color: #8A6220;
}

.day-badge.d4 {
      background: rgba(193, 105, 79, 0.12);
      color: var(--terracotta);
}

.day-badge.d5 {
      background: rgba(61, 107, 79, 0.12);
      color: var(--green-deep);
}

.day-badge.d6 {
      background: rgba(212, 168, 83, 0.15);
      color: #8A6220;
}

.day-badge.d7 {
      background: linear-gradient(135deg, var(--terracotta), var(--gold));
      color: var(--white);
}

.day-card h3 {
      font-size: 1rem;
      margin-bottom: 8px;
}

.day-card p {
      font-size: 0.85rem;
      color: var(--text-mid);
      line-height: 1.6;
}

.day-card .day-actions {
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 6px;
}

.day-card .day-actions li {
      font-size: 0.82rem;
      color: var(--text-mid);
      display: flex;
      align-items: flex-start;
      gap: 8px;
}

.day-card .day-actions li::before {
      content: '☐';
      color: var(--terracotta);
      flex-shrink: 0;
}

.day-card .day-signal {
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      font-size: 0.78rem;
      color: var(--green-deep);
      font-style: italic;
}

/* Ficha Cards (Biblioteca) */
.fichas-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
}

.ficha-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      border-left: 4px solid var(--terracotta);
      transition: var(--transition);
}

.ficha-card:hover {
      transform: translateX(4px);
      box-shadow: var(--shadow-md);
}

.ficha-card .ficha-signal {
      font-family: 'Outfit', sans-serif;
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--terracotta);
      margin-bottom: 8px;
}

.ficha-card h3 {
      font-size: 1rem;
      margin-bottom: 8px;
}

.ficha-card p {
      font-size: 0.85rem;
      color: var(--text-mid);
      line-height: 1.6;
}

.ficha-card .ficha-actions {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ficha-card .ficha-actions li {
      font-size: 0.82rem;
      color: var(--text-dark);
      padding: 3px 0;
      display: flex;
      align-items: flex-start;
      gap: 8px;
}

.ficha-card .ficha-actions li::before {
      content: '→';
      color: var(--green-deep);
      font-weight: 700;
      flex-shrink: 0;
}

.ficha-card .ficha-pilar {
      display: inline-block;
      margin-top: 10px;
      padding: 3px 10px;
      background: var(--green-pale);
      color: var(--green-deep);
      border-radius: var(--radius-full);
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
}

/* Itinerary (Kanejawe) */
.itinerary-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
}

.itinerary-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-xl);
      padding: 32px;
      transition: var(--transition);
}

.itinerary-card:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-3px);
}

.itinerary-card h3 {
      color: var(--gold);
      font-size: 1.1rem;
      margin-bottom: 12px;
}

.itinerary-card .schedule-item {
      display: flex;
      gap: 12px;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.75);
}

.itinerary-card .schedule-item:last-child {
      border-bottom: none;
}

.itinerary-card .schedule-time {
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
      color: var(--terracotta-l);
      min-width: 60px;
      flex-shrink: 0;
}

/* Tabs */
.tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 32px;
      flex-wrap: wrap;
      justify-content: center;
}

.tab-btn {
      padding: 10px 24px;
      border-radius: var(--radius-full);
      font-family: 'Outfit', sans-serif;
      font-size: 0.88rem;
      font-weight: 600;
      background: var(--white);
      color: var(--text-mid);
      border: 2px solid rgba(0, 0, 0, 0.06);
      transition: var(--transition);
}

.tab-btn:hover {
      border-color: var(--terracotta);
      color: var(--terracotta);
}

.tab-btn.active {
      background: var(--terracotta);
      color: var(--white);
      border-color: var(--terracotta);
}

.tab-content {
      display: none;
      animation: fadeIn 0.4s var(--ease-out);
}

.tab-content.active {
      display: block;
}

/* Interior page responsive */
@media (max-width: 768px) {
      .page-hero {
            padding: 120px 0 40px;
      }

      .curriculum-grid {
            grid-template-columns: 1fr;
      }

      .days-grid {
            grid-template-columns: 1fr;
      }

      .fichas-grid {
            grid-template-columns: 1fr;
      }

      .itinerary-grid {
            grid-template-columns: 1fr;
      }
}

/* ═══════════════════════════════════════
   LANGUAGE TOGGLE + THEME SELECTOR
   ═══════════════════════════════════════ */

/* ─── Controls Container ─── */
.nav-controls {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: 8px;
}

/* ─── Language Toggle ─── */
.lang-toggle {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 5px 12px;
      border-radius: 20px;
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
}

.lang-toggle:hover {
      background: rgba(255, 255, 255, 0.22);
      border-color: rgba(255, 255, 255, 0.4);
}

/* ─── Theme Trigger ─── */
.theme-trigger {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 5px 10px;
      border-radius: 20px;
      cursor: pointer;
      font-size: 1rem;
      line-height: 1;
      transition: all 0.3s ease;
      position: relative;
}

.theme-trigger:hover {
      background: rgba(255, 255, 255, 0.22);
      border-color: rgba(255, 255, 255, 0.4);
}

/* ─── Theme Panel ─── */
.theme-panel {
      position: absolute;
      top: calc(100% + 12px);
      right: 0;
      background: var(--card-bg, #fff);
      border-radius: 16px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 160px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: all 0.25s ease;
      z-index: 10000;
}

.theme-panel.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
}

.theme-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border: none;
      background: transparent;
      border-radius: 10px;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      color: var(--text-dark, #2C1810);
      transition: all 0.2s ease;
      white-space: nowrap;
}

.theme-btn:hover {
      background: var(--sand, #FAF6F0);
}

.theme-btn.active {
      background: var(--green-deep, #3D6B4F);
      color: #fff;
}

.theme-icon {
      font-size: 1.1rem;
}

.theme-name {
      font-weight: 500;
}

/* ─── Theme wrapper (for positioning) ─── */
.theme-wrapper {
      position: relative;
}

/* ═══════════════════════════════════════
   DARK MODE OVERRIDES (Nocturno theme)
   ═══════════════════════════════════════ */
body.theme-dark {
      background: var(--sand);
      color: var(--text-dark);
}

body.theme-dark .section-pad {
      background: var(--section-bg);
}

body.theme-dark .section-header h2 {
      color: var(--text-dark);
}

body.theme-dark .section-header p {
      color: var(--text-mid);
}

body.theme-dark .pillar-card,
body.theme-dark .program-card,
body.theme-dark .law-card,
body.theme-dark .retreat-card,
body.theme-dark .testimonial-card,
body.theme-dark .quiz-container {
      background: var(--card-bg);
      border-color: var(--card-border);
      color: var(--text-dark);
}

body.theme-dark .pillar-card h3,
body.theme-dark .program-card h3,
body.theme-dark .law-card h3,
body.theme-dark .retreat-card h3,
body.theme-dark .testimonial-card .name {
      color: var(--text-dark);
}

body.theme-dark .pillar-card p,
body.theme-dark .program-card p,
body.theme-dark .law-card p,
body.theme-dark .retreat-card p,
body.theme-dark .testimonial-card blockquote {
      color: var(--text-mid);
}

body.theme-dark .program-card .program-features li {
      color: var(--text-mid);
}

body.theme-dark .level-content h3,
body.theme-dark .level-content p,
body.theme-dark .level-name {
      color: var(--text-dark);
}

body.theme-dark .level-criteria {
      color: var(--terracotta);
}

body.theme-dark .quiz-option {
      background: rgba(255, 255, 255, 0.06);
      border-color: var(--card-border);
      color: var(--text-dark);
}

body.theme-dark .quiz-option:hover {
      background: rgba(255, 255, 255, 0.12);
}

body.theme-dark .badge-terra {
      background: rgba(224, 122, 95, 0.15);
      color: var(--terracotta);
}

body.theme-dark .badge-gold {
      background: rgba(242, 201, 143, 0.15);
      color: var(--gold);
}

body.theme-dark .badge-green {
      background: rgba(91, 154, 110, 0.15);
      color: var(--green-deep);
}

body.theme-dark .footer {
      background: var(--footer-bg);
}

body.theme-dark .laws-section {
      background: var(--section-bg);
}

body.theme-dark .disclaimer-banner {
      background: var(--card-bg);
      border-color: var(--card-border);
      color: var(--text-dark);
}

/* ─── Responsive controls ─── */
@media (max-width: 768px) {
      .nav-controls {
            position: absolute;
            top: 12px;
            right: 60px;
            gap: 6px;
      }

      .lang-toggle {
            padding: 4px 8px;
            font-size: 0.7rem;
      }

      .theme-trigger {
            padding: 4px 8px;
            font-size: 0.85rem;
      }

      .theme-panel {
            right: -20px;
            min-width: 140px;
      }
}

/* ═══════════════════════════════════════
   FLOATING CONTROLS STACK
   Bottom-right: WhatsApp(24px) → Theme(94px) → Lang(164px)
   ═══════════════════════════════════════ */

/* ── Theme Float ── */
.theme-float {
      position: fixed;
      bottom: 94px;
      right: 24px;
      z-index: 9998;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--terracotta, #C4754B);
      color: #fff;
      border: none;
      cursor: pointer;
      font-size: 1.3rem;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
}

.theme-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.theme-float-panel {
      position: fixed;
      bottom: 160px;
      right: 24px;
      z-index: 9999;
      background: var(--card-bg, #fff);
      border-radius: 14px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
      padding: 8px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 150px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: all 0.25s ease;
}

.theme-float-panel.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
}

.theme-float-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border: none;
      background: transparent;
      border-radius: 10px;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      color: var(--text-dark, #2C1810);
      transition: all 0.2s ease;
      white-space: nowrap;
}

.theme-float-btn:hover {
      background: var(--sand, #FAF6F0);
}

.theme-float-btn.active {
      background: var(--terracotta, #C4754B);
      color: #fff;
}

/* ── Language Float ── */
.lang-float {
      position: fixed;
      bottom: 164px;
      right: 24px;
      z-index: 9998;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--green-deep, #3D6B4F);
      color: #fff;
      border: none;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 0.05em;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
}

.lang-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.lang-float-panel {
      position: fixed;
      bottom: 228px;
      right: 24px;
      z-index: 9999;
      background: var(--card-bg, #fff);
      border-radius: 14px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
      padding: 8px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 130px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: all 0.25s ease;
}

.lang-float-panel.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
}

.lang-float-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border: none;
      background: transparent;
      border-radius: 10px;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      color: var(--text-dark, #2C1810);
      transition: all 0.2s ease;
      white-space: nowrap;
}

.lang-float-btn:hover {
      background: var(--sand, #FAF6F0);
}

.lang-float-btn.active {
      background: var(--green-deep, #3D6B4F);
      color: #fff;
}

.lang-float-flag {
      font-size: 1.2rem;
}