/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-950: #120e0d;
  --brand-900: #211916;
  --brand-800: #42342e;
  --brand-500: #a3877b;
  --brand-400: #c9b9b1;
  --brand-300: #e4dcd8;
  --brand-200: #f2ede9;
  --brand-100: #f8f5f2;
  --accent-400: #fbbf24;
  --accent-500: #f59e0b;
  --accent-600: #d97706;
  --accent-glow: rgba(245, 158, 11, 0.2);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  background: var(--brand-950);
  color: var(--brand-400);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-500) 50%, var(--accent-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ANIMATIONS & REVEALS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(20px);
}

.reveal.active .stagger-item {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger delays */
.reveal.active .stagger-item:nth-child(1) {
  animation-delay: 0.1s;
}

.reveal.active .stagger-item:nth-child(2) {
  animation-delay: 0.2s;
}

.reveal.active .stagger-item:nth-child(3) {
  animation-delay: 0.3s;
}

.reveal.active .stagger-item:nth-child(4) {
  animation-delay: 0.4s;
}

.reveal.active .stagger-item:nth-child(5) {
  animation-delay: 0.5s;
}


/* ===== BARRA SUPERIOR FIJA (BLOQUE 0) ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(18, 14, 13, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 0;
  transition: var(--transition);
}

.top-bar.scrolled {
  background: rgba(18, 14, 13, 0.95);
  padding: 8px 0;
}

.top-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-text {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  line-height: 1.2;
}

.top-bar-text span {
  color: var(--accent-400);
  font-weight: 700;
}

/* Top bar mobile consolidated at the end */


/* ===== BOTONES ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(245, 158, 11, 0.5);
  filter: brightness(1.1);
}

.btn-cta:active {
  transform: translateY(-1px);
}

.btn-cta-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-cta-full {
  width: 100%;
  padding: 20px 32px;
  font-size: 1.1rem;
}

/* Separador de media queries limpios */


.section-dark {
  padding: 80px 0;
  background: var(--brand-950);
  color: var(--brand-400);
  position: relative;
}

.section-final {
  padding: 120px 0;
}

.section-light {
  padding: 80px 0;
  background: var(--brand-100);
  color: var(--brand-800);
  position: relative;
}

/* Spacing reset */


.s-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -1px;
}

.s-subtitle {
  font-size: 1.15rem;
  color: var(--brand-400);
  max-width: 800px;
  margin-bottom: 56px;
  line-height: 1.6;
}

.section-light .s-title {
  color: var(--brand-900);
}

.section-light .s-subtitle {
  color: var(--brand-800);
}

.s-title-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header-wrap {
  text-align: center;
  margin-bottom: 60px;
}

/* Header reset */


/* Global Alignment reset */



/* ===== PAW LIST (BLOQUE EMOCIONAL) ===== */
.paw-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 48px 0;
}

.paw-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--brand-300);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.paw-item::before {
  content: '🐾';
  font-size: 1.2rem;
  filter: sepia(1) saturate(5) hue-rotate(320deg);
  /* Accent color tint */
}

.emotional-conclusion {
  max-width: 800px;
  margin: 64px auto 0;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--brand-300);
  font-family: var(--font-display);
  font-weight: 500;
  text-align: center;
}

.emotional-conclusion strong {
  color: #fff;
  font-weight: 700;
}

#espejo,
#manifesto {
  position: relative;
  overflow: hidden;
}

#manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/malamute-tutor-membresia.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

#espejo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/chica-playa-bc.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

/* ===== COMMUNITY SECTION (BLOQUE 8) ===== */
.community-points {
  display: grid;
  gap: 24px;
}

.community-point {
  border-left: 3px solid var(--accent-500);
  padding-left: 24px;
  position: relative;
}

.community-point strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brand-900);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.community-point p {
  font-size: 1rem;
  color: var(--brand-800);
  line-height: 1.6;
}

.quote-tag {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--accent-500);
  border-radius: 100px;
  color: var(--accent-400);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-top: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 24px;
  transition: var(--transition);
  position: relative;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-500);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.feature-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-500);
  margin-bottom: 24px;
  opacity: 0.7;
  letter-spacing: 2px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--brand-400);
  line-height: 1.6;
}

/* Summary Box */
.summary-box {
  margin-top: 100px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  padding: 60px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.summary-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.summary-list {
  list-style: none;
}

.summary-list li {
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--brand-300);
  display: flex;
  align-items: center;
  gap: 12px;
}

.summary-list li::before {
  content: '✓';
  color: var(--accent-500);
  font-weight: 900;
}

/* Reflection Block */
.reflection-block {
  margin-top: 120px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.reflection-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-500);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.reflection-main {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 32px;
  font-weight: 800;
}

.reflection-sub {
  font-size: 1.25rem;
  color: var(--brand-400);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Tablet reset */


/* Summary reset */


/* ===== COMPARISON SECTION (BLOQUE 8.5) ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}

.comparison-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px;
  border-radius: 32px;
  position: relative;
  transition: var(--transition);
}

.comparison-card.featured {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--accent-500);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  transform: scale(1.05);
  z-index: 2;
}

.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-500);
  margin-bottom: 24px;
  font-weight: 800;
}

.card-label.featured {
  color: var(--accent-400);
}

.comparison-card h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 32px;
}

.comparison-list {
  list-style: none;
}

.comparison-list li {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--brand-300);
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-list li::before {
  content: '→';
  color: var(--accent-500);
  opacity: 0.5;
}

.card-highlight {
  position: absolute;
  top: -15px;
  right: 40px;
  background: var(--accent-500);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.positioning-content {
  margin-top: 60px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.positioning-text p {
  font-size: 1.25rem;
  color: var(--brand-300);
  line-height: 1.7;
  margin-bottom: 24px;
}

.positioning-text strong {
  color: #fff;
}

@media (max-width: 768px) {
  .positioning-content {
    margin-top: 32px;
    padding: 0 4px;
  }

  .positioning-text p {
    font-size: 1rem !important;
  }

  .comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .comparison-card.featured {
    transform: none;
    order: -1;
  }

  .comparison-card {
    padding: 32px 20px;
  }

  .comparison-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    border-bottom: none;
    padding: 10px 0;
  }

  .card-highlight {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
    transform: none;
    left: auto;
    right: auto;
  }
}

.academy-pillars {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.pillar {
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: var(--font-display);
  color: var(--brand-300);
  font-size: 1rem;
}

@media (max-width: 900px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-card.featured {
    transform: none;
    margin-top: 20px;
  }
}

#espejo .container,
#manifesto .container {
  position: relative;
  z-index: 1;
}

.mirror-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mirror-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mirror-image img {
  width: 100%;
  display: block;
  filter: brightness(0.9);
}

@media (max-width: 850px) {
  .mirror-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== OUTCOMES (BLOQUE 5) ===== */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}

.outcome-card {
  background: #fff;
  padding: 48px;
  border-radius: 32px;
  border: 1px solid rgba(92, 69, 58, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.outcome-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-400), var(--accent-600));
  opacity: 0;
  transition: var(--transition);
}

.outcome-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(92, 69, 58, 0.1);
}

.outcome-card:hover::after {
  opacity: 1;
}

.outcome-card h4 {
  font-size: 1.4rem;
  color: var(--brand-900);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.outcome-card p {
  font-size: 1.05rem;
  color: var(--brand-800);
  line-height: 1.7;
}

/* ===== ROADMAP JOURNEY (BLOQUE 6) ===== */
.roadmap-container {
  position: relative;
  padding: 40px 0;
  max-width: 1000px;
  margin: 0 auto;
}

.roadmap-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent,
      var(--accent-500) 10%,
      var(--accent-500) 90%,
      transparent);
  transform: translateX(-50%);
  z-index: 1;
}

.roadmap-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  align-items: center;
}

/* Horizontal Connector */
.roadmap-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 2px;
  background: var(--accent-500);
  transform: translateY(-50%);
  opacity: 0.3;
  z-index: -1;
}

.roadmap-item:nth-child(odd)::before {
  transform: translateY(-50%) translateX(-100%);
}

.roadmap-item:nth-child(even)::before {
  transform: translateY(-50%);
}

.roadmap-item:nth-child(even) .roadmap-content {
  grid-column: 2;
}

.roadmap-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid var(--accent-500);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px var(--accent-glow);
  transition: var(--transition);
  z-index: 10;
}

.roadmap-item:hover .roadmap-dot {
  transform: translate(-50%, -50%) scale(1.3);
  background: var(--accent-500);
}

.roadmap-content {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(92, 69, 58, 0.08);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.roadmap-item:hover .roadmap-content {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(92, 69, 58, 0.12);
  border-color: var(--accent-500);
}

.roadmap-num {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 6rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--brand-100);
  line-height: 1;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.roadmap-content .step-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
  position: relative;
  z-index: 1;
}

.roadmap-content h4 {
  font-size: 1.5rem;
  color: var(--brand-900);
  margin-bottom: 12px;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.roadmap-content p {
  position: relative;
  z-index: 1;
  color: var(--brand-800);
  font-size: 1.05rem;
}

.roadmap-content p strong {
  color: var(--brand-900);
}

@media (max-width: 850px) {
  .roadmap-line {
    left: 20px;
    transform: none;
  }

  .roadmap-dot {
    left: 20px;
    transform: translateY(-50%);
  }

  .roadmap-item:hover .roadmap-dot {
    transform: translateY(-50%) scale(1.3);
  }

  .roadmap-item {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-left: 60px;
    margin-bottom: 30px;
  }

  .roadmap-item::before {
    display: none;
  }

  .roadmap-item:nth-child(even) .roadmap-content {
    grid-column: 1;
  }
}

/* ===== SECTION DECORATIONS ===== */
.bg-glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

/* ===== HERO (BLOQUE 1) ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding-top: 100px;
  /* Offset for sticky bar */
  background: linear-gradient(to right, rgba(18, 14, 13, 0.95) 25%, rgba(18, 14, 13, 0.4) 100%), url('images/AUSSIE-portada.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero .container {
  max-width: 1400px;
  margin-left: 6%;
  margin-right: auto;
}

/* Hero container reset */


.hero h1 {
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 28px;
  max-width: 900px;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.hero-sub {
  font-size: 1.35rem;
  color: var(--brand-300);
  max-width: 580px;
  margin: 0 0 44px;
  line-height: 1.6;
  font-weight: 500;
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.hero-checks li {
  font-size: 1rem;
  color: var(--brand-400);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-checks li .check {
  color: var(--accent-400);
  font-weight: 700;
}

.hero-price-note {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--brand-500);
}

.hero-microcopy {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--brand-400);
  letter-spacing: 0.5px;
  opacity: 0.8;
  font-weight: 500;
}

.hero-price-note strong {
  color: #fff;
}

.hero-small {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--brand-800);
  max-width: 480px;
  font-style: italic;
}

/* ===== MANIFIESTO (BLOQUE 2) ===== */
.section-manifesto {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-manifesto.section-light {
  background: var(--brand-100);
}

.manifesto-intro {
  max-width: 800px;
  margin-bottom: 80px;
}

.manifesto-intro h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 32px;
  color: #fff;
}

.section-light .manifesto-intro h2 {
  color: var(--brand-900);
}

.manifesto-intro p {
  font-size: 1.2rem;
  color: var(--brand-300);
  margin-bottom: 24px;
}

.section-light .manifesto-intro p {
  color: var(--brand-800);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

.manifesto-card.wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

@media (max-width: 900px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-card.wide {
    grid-column: span 1;
    flex-direction: column;
    gap: 24px;
  }
}

.manifesto-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  padding: 48px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-light .manifesto-card {
  background: #fff;
  border-color: rgba(92, 69, 58, 0.08);
  box-shadow: 0 20px 40px rgba(92, 69, 58, 0.05);
}

.manifesto-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-8px);
}

.section-light .manifesto-card:hover {
  background: #fff;
  box-shadow: 0 30px 60px rgba(92, 69, 58, 0.1);
}

.manifesto-card h3 {
  font-size: 1.6rem;
  color: var(--accent-400);
  font-family: var(--font-display);
}

.section-light .manifesto-card h3 {
  color: var(--accent-600);
}

.manifesto-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--brand-300);
}

.section-light .manifesto-card p {
  color: var(--brand-800);
}

.manifesto-card .details {
  font-size: 0.95rem;
  color: var(--brand-400);
  line-height: 1.6;
}

.section-light .manifesto-card .details {
  color: var(--brand-500);
}

.manifesto-footer {
  margin-top: 80px;
  max-width: 800px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.manifesto-footer p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 24px;
}

.section-light .manifesto-footer p {
  color: var(--brand-900);
}

.manifesto-footer .highlight {
  font-size: 1.5rem;
  color: var(--accent-400);
  font-weight: 700;
  margin-top: 32px;
  display: block;
}

.section-light .manifesto-footer .highlight {
  color: var(--accent-600);
}

/* ===== EL ESPEJO (BLOQUE 3) ===== */
.espejo-list {
  margin: 32px 0 40px;
}

.espejo-list li {
  padding: 14px 0;
  font-size: 1rem;
  line-height: 1.7;
  border-bottom: 1px solid rgba(92, 69, 58, 0.12);
  display: flex;
  gap: 12px;
}

.espejo-list li .arrow {
  color: var(--accent-500);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.espejo-cta {
  font-size: 1.05rem;
  color: var(--brand-300);
  font-weight: 500;
  line-height: 1.7;
  margin-top: 8px;
}

.section-light .espejo-cta {
  color: var(--brand-900);
}

/* ===== EL PROBLEMA (BLOQUE 3) ===== */
.problema-body p {
  font-size: 1.05rem;
  color: var(--brand-400);
  line-height: 1.8;
  margin-bottom: 24px;
}

.quote-highlight {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 40px 0;
  margin: 20px 0;
  border-top: 1px solid rgba(92, 69, 58, 0.25);
  border-bottom: 1px solid rgba(92, 69, 58, 0.25);
}

/* ===== AUTORIDAD (BLOQUE 4) ===== */
.section-dark-gradient {
  padding: 120px 0;
  background: linear-gradient(145deg, #1a1412 0%, #120e0d 100%);
  position: relative;
}

.section-dark-gradient.section-light {
  background: var(--brand-100);
}

.autoridad-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

.autoridad-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(92, 69, 58, 0.3);
  aspect-ratio: 3/4;
  background: var(--brand-900);
}

.section-light .autoridad-photo {
  border-color: rgba(92, 69, 58, 0.1);
}

.autoridad-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-light .autoridad-photo img {
  filter: none;
}

.autoridad-body h2 {
  margin-bottom: 24px;
}

.autoridad-body p {
  font-size: 1rem;
  color: var(--brand-400);
  line-height: 1.8;
  margin-bottom: 20px;
}

.section-light .autoridad-body p {
  color: var(--brand-800);
}

.autoridad-testimonios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.autoridad-test-card {
  background: rgba(45, 34, 29, 0.5);
  border: 1px solid rgba(92, 69, 58, 0.25);
  border-radius: 16px;
  padding: 24px;
}

.autoridad-test-card p {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--brand-400);
  line-height: 1.7;
  margin-bottom: 16px;
}

.autoridad-test-card .author {
  font-size: 0.82rem;
  color: var(--accent-400);
  font-weight: 600;
}

.autoridad-test-card .role {
  font-size: 0.78rem;
  color: var(--brand-500);
}

/* ===== QUÉ ES (BLOQUE 5) ===== */
.que-es-sub {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brand-900);
  font-weight: 600;
  margin-bottom: 24px;
}

/* ===== LO QUE INCLUYE (BLOQUE 6) ===== */
.incluye-section {
  margin-bottom: 56px;
}

.incluye-section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.25);
  font-size: 0.75rem;
  color: var(--accent-400);
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.incluye-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.incluye-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5);
}

.incluye-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.incluye-item p {
  font-size: 0.95rem;
  color: var(--brand-400);
  line-height: 1.7;
  padding-left: 0;
}

.incluye-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ===== PRECIO (BLOQUE 9) ===== */
.precio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 64px;
  align-items: stretch;
}

.precio-card {
  background: rgba(45, 34, 29, 0.5);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.precio-card.recommended {
  border-color: var(--accent-500);
  background: rgba(45, 34, 29, 0.7);
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 20px 50px rgba(217, 119, 6, 0.15);
}

.precio-card.recommended::after {
  content: 'RECOMENDADO';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-500);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.precio-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent-400);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.precio-card-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: #fff;
  font-weight: 800;
  line-height: 1;
}

.precio-card-amount span {
  font-size: 1.2rem;
  color: var(--brand-500);
}

.precio-card-sub {
  font-size: 0.9rem;
  color: var(--brand-500);
  margin: 16px 0 32px;
}

.precio-card-list {
  text-align: left;
  margin-bottom: 40px;
  flex-grow: 1;
  list-style: none;
}

.precio-card-list li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--brand-400);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.precio-card-list li::before {
  content: '✓';
  color: var(--accent-400);
  font-weight: 800;
}

.precio-card-footer {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--brand-800);
  font-style: italic;
}

@media (max-width: 1024px) {
  .precio-card.recommended {
    transform: none;
  }

  .precio-grid {
    gap: 32px;
  }
}

/* Pricing reset */


/* ===== PRUEBA SOCIAL (BLOQUE 8) ===== */
.prueba-tag {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-400);
  font-weight: 700;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.test-card {
  background: rgba(45, 34, 29, 0.4);
  border: 1px solid rgba(92, 69, 58, 0.2);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.test-card:hover {
  border-color: rgba(217, 119, 6, 0.2);
}

.test-card blockquote {
  font-size: 0.92rem;
  color: var(--brand-400);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.test-card .author-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.88rem;
}

.test-card .author-detail {
  font-size: 0.78rem;
  color: var(--brand-500);
  margin-top: 2px;
}

.prueba-bridge {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: rgba(45, 34, 29, 0.3);
  border-radius: 14px;
  border: 1px solid rgba(92, 69, 58, 0.15);
  font-size: 1rem;
  color: var(--brand-400);
  line-height: 1.7;
}

.prueba-bridge strong {
  color: #fff;
}

/* ===== BONOS (BLOQUE 9) ===== */
.bono-card {
  background: rgba(45, 34, 29, 0.4);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 20px;
  padding: 36px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.bono-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-400), var(--accent-600));
}

.bono-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--accent-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bono-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.bono-card p {
  font-size: 0.92rem;
  color: var(--brand-400);
  line-height: 1.7;
}

.bonos-note {
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--brand-500);
  font-style: italic;
  text-align: center;
}

/* ===== FAQ (BLOQUE 10) ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(92, 69, 58, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 0;
}

.faq-question .icon {
  font-size: 1.3rem;
  color: var(--accent-400);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--brand-500);
  line-height: 1.75;
}

/* ===== CIERRE (BLOQUE 11) ===== */
.cierre-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #fff;
  text-align: center;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

.cierre-separator {
  width: 60px;
  height: 2px;
  margin: 40px auto;
  background: linear-gradient(90deg, transparent, var(--accent-500), transparent);
}

.cierre-claim {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brand-400);
  text-align: center;
  max-width: 550px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cierre-small {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--brand-800);
}

/* ===== TESTIMONIALS (BLOQUE 8) ===== */
.section-testimonials {
  padding: 120px 0;
  background: var(--brand-950);
  position: relative;
}

.section-testimonials.section-light {
  background: var(--brand-100);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.test-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.section-light .test-card {
  background: #fff;
  border-color: rgba(92, 69, 58, 0.08);
  box-shadow: 0 15px 35px rgba(92, 69, 58, 0.05);
}

.test-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 8rem;
  font-family: var(--font-display);
  color: rgba(245, 158, 11, 0.05);
  line-height: 1;
}

.section-light .test-card::before {
  color: rgba(92, 69, 58, 0.05);
}

.test-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 158, 11, 0.2);
}

.section-light .test-card:hover {
  background: #fff;
  box-shadow: 0 25px 50px rgba(92, 69, 58, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.test-content {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--brand-300);
}

.section-light .test-content {
  color: var(--brand-800);
}

/* ===== RUTAS DE APRENDIZAJE ===== */
.rutas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.ruta-card {
  background: #fff;
  border: 1px solid rgba(92, 69, 58, 0.1);
  padding: 40px;
  border-radius: 24px;
  transition: var(--transition);
}

.ruta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(92, 69, 58, 0.05);
}

.ruta-num {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-500);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.ruta-card h4 {
  font-size: 1.25rem;
  color: var(--brand-900);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.ruta-card p {
  font-size: 0.95rem;
  color: var(--brand-800);
  line-height: 1.6;
}

/* ===== ANTES Y DESPUÉS ===== */
.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 64px;
}

.comp-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px;
  border-radius: 32px;
}

.comp-box h4 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comp-list {
  list-style: none;
}

.comp-list li {
  padding: 12px 0;
  font-size: 1rem;
  color: var(--brand-400);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-list li::before {
  content: '→';
  color: var(--accent-400);
  font-weight: 700;
}

.comp-box.after {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.03);
}

.comp-box.after h4 {
  color: var(--accent-400);
}

/* ===== COMPARATIVO "LO QUE NO" ===== */
.no-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.no-item {
  background: rgba(255, 255, 255, 0.4);
  padding: 20px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: var(--brand-800);
  display: flex;
  align-items: center;
  gap: 12px;
}

.no-item::before {
  content: '✕';
  color: #ef4444;
  font-weight: 800;
}

/* ===== FAQ REFINED ===== */
.faq-grid {
  max-width: 800px;
  margin: 64px auto 0;
}

.faq-item {
  margin-bottom: 16px;
  border: 1px solid rgba(92, 69, 58, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.faq-trigger {
  width: 100%;
  padding: 24px;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-900);
  cursor: pointer;
  font-size: 1.1rem;
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--brand-800);
  line-height: 1.7;
  font-size: 1rem;
  display: none;
}

.faq-item.active .faq-content {
  display: block;
}

.faq-item.active .faq-trigger {
  color: var(--accent-600);
}

/* ===== BOOKS SECTION ===== */
.books-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Books tablet reset */


.book-item {
  text-align: center;
  transition: var(--transition);
}

.book-item:hover {
  transform: translateY(-10px);
}

.book-img-wrap {
  perspective: 1000px;
  margin-bottom: 20px;
}

.book-img {
  width: 100%;
  max-width: 160px;
  height: auto;
  border-radius: 4px;
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.2);
  transform: rotateY(-15deg);
  transition: var(--transition);
}

.book-item:hover .book-img {
  transform: rotateY(0deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.book-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-900);
  line-height: 1.4;
}

/* ===== ABOUT / DETAILED AUTHORITY ===== */
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 100px;
  align-items: center;
}

/* About authority tablet reset */


.about-photo-wrap {
  position: relative;
}

.premium-frame {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(92, 69, 58, 0.15);
  border: 1px solid rgba(92, 69, 58, 0.1);
}

.about-photo {
  width: 100%;
  display: block;
  filter: contrast(1.02);
}

.wolves-banner {
  width: 100%;
  margin-top: 32px;
  mix-blend-mode: multiply;
  /* Removes white background on light sections */
  opacity: 0.9;
}

.about-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-600);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

#autoridad {
  padding: 60px 0;
}

.about-title {
  font-size: 2.2rem;
  color: var(--brand-900);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text {
  font-size: 1.15rem;
  color: var(--brand-800);
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: justify;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(92, 69, 58, 0.15);
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-900);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--brand-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Global tablet reset */


/* About authority reset */


.test-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.user-info h5 {
  margin: 0;
  font-size: 0.95rem;
  color: #fff;
}

.section-light .user-info h5 {
  color: var(--brand-900);
}

.user-info p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--brand-500);
}

/* ===== BONOS (BLOQUE 9) ===== */
.bono-card {
  background: linear-gradient(145deg, rgba(45, 34, 29, 0.6), rgba(18, 14, 13, 0.8));
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 32px;
  align-items: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.bono-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent-500);
  color: #fff;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.bono-icon {
  width: 120px;
  height: 120px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
}

/* ===== SHIMMER EFFECT FOR BUTTONS ===== */
.btn-cta {
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent);
  transform: rotate(45deg);
  transition: 0.8s;
  pointer-events: none;
}

.btn-cta:hover::after {
  left: 100%;
  top: 100%;
}

/* Bono reset */


/* ===== METODOLOGÍA CORE ===== */
.section-core {
  padding: 80px 0;
  background: var(--brand-950);
  position: relative;
  overflow: hidden;
}

.core-intro {
  text-align: center;
  margin-bottom: 40px;
}

.core-tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brand-300);
  margin-top: 16px;
}

.core-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.core-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: 24px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.core-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--accent-500);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.core-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.1;
  position: absolute;
  top: 15px;
  right: 20px;
  pointer-events: none;
}

.core-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.core-card p {
  font-size: 0.95rem;
  color: var(--brand-400);
  line-height: 1.6;
}

.core-footer {
  margin-top: 20px;
}

.core-quote-main {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 48px;
  text-align: center;
}

.core-reflection-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.core-reflection-text p {
  font-size: 1.1rem;
  color: var(--brand-300);
  line-height: 1.7;
  margin-bottom: 0;
}

.core-final-message {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(245, 158, 11, 0.15);
  position: relative;
  overflow: hidden;
}

.core-final-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-500), var(--accent-600));
}

.message-inner p {
  font-size: 1rem;
  color: var(--brand-400);
  margin-bottom: 0;
}

.message-inner .p-highlight {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .core-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-reflection-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Core reset */


/* ===== STYLISH DISCLAIMER / CLAIM BOX ===== */
.disclaimer-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--accent-500);
  border-radius: 24px;
  padding: 40px;
  margin-top: 48px;
  text-align: left;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.disclaimer-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.disclaimer-header {
  margin-bottom: 24px;
}

.disclaimer-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-400);
  letter-spacing: 1.5px;
}

.disclaimer-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.disclaimer-lead {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.disclaimer-subtext {
  font-size: 1.05rem;
  color: var(--brand-300);
  line-height: 1.7;
}

.disclaimer-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.disclaimer-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.disclaimer-highlight p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent-400);
  line-height: 1.5;
}

.disclaimer-note {
  font-size: 0.9rem;
  color: var(--brand-500);
  line-height: 1.6;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin: 0;
}

.disclaimer-note strong {
  color: var(--brand-400);
}

/* Disclaimer reset */


/* ===== ACADEMY FEATURES GRID (BLOQUE 7.5) ===== */
.academy-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.academy-feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.academy-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(245, 158, 11, 0.05);
}

@media (min-width: 1025px) {

  /* Centers the 10th card perfectly on desktop grids */
  .academy-feature-card:nth-child(10) {
    grid-column: 2;
  }
}

/* Feature Image Container & Empty State Placeholder */
.feature-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--brand-900) 0%, var(--brand-950) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-image-wrapper::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
  animation: glowPulse 6s infinite alternate ease-in-out;
}

@keyframes glowPulse {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.8;
  }
}

.feature-image-placeholder-icon {
  font-size: 2.2rem;
  color: var(--accent-400);
  opacity: 0.2;
  filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.3));
  transition: var(--transition);
  z-index: 2;
}

.academy-feature-card:hover .feature-image-placeholder-icon {
  opacity: 0.4;
  transform: scale(1.15);
}

.feature-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  /* Automatically supports transparency base64 and actual image fallback */
  z-index: 1;
}

.academy-feature-card:hover .feature-card-img {
  transform: scale(1.06);
}

.feature-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(18, 14, 13, 0.8) 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* Feature Information Content */
.feature-info-wrapper {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feature-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.feature-number-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-400);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
}

.feature-info-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: 700;
}

.feature-info-wrapper p {
  font-size: 0.95rem;
  color: var(--brand-400);
  line-height: 1.65;
  margin: 0;
}

/* Academy features tablet reset */


@media (max-width: 768px) {
  /* RESET GLOBAL MÓVIL - FUERZA BRUTA CENTRADO */
  * {
    box-sizing: border-box !important;
  }

  body, html {
    overflow-x: hidden !important;
    width: 100% !important;
    text-align: center !important; /* Centrado base */
  }

  /* Forzar que todos los textos estén centrados */
  h1, h2, h3, h4, h5, h6, p, li, span, strong, a {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important; /* Asegura que el margin auto funcione */
    width: auto !important;
    max-width: 100% !important;
  }

  /* Contenedores y secciones */
  .container, 
  .container-wide, 
  section, 
  div, 
  header, 
  footer {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    float: none !important;
    position: relative !important;
    left: 0 !important;
    transform: none !important;
    display: block !important;
    clear: both !important;
  }

  /* Flex containers específicos para centrado vertical/horizontal */
  .top-bar-inner, 
  .hero .container,
  .features-grid, 
  .academy-features-grid,
  .precio-grid,
  .manifesto-grid,
  .testimonial-grid,
  .core-pillars,
  .no-list,
  .about-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Tarjetas y bloques */
  .feature-card, 
  .academy-feature-card, 
  .precio-card, 
  .manifesto-card, 
  .test-card, 
  .core-card, 
  .bono-card,
  .roadmap-item,
  .outcome-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 30px 20px !important;
    text-align: center !important;
  }

  /* Listas */
  ul, ol {
    padding: 0 !important;
    margin: 0 auto !important;
    list-style: none !important;
  }

  li {
    margin-bottom: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* Iconos y viñetas */
  li::before, .check, .arrow, .feature-num {
    margin: 0 0 10px 0 !important;
    display: inline-block !important;
    position: static !important;
  }

  /* Héroe específico */
  .hero {
    padding-top: 120px !important;
    min-height: auto !important;
    justify-content: center !important;
    background-position: center !important;
  }

  .hero h1 { font-size: 1.8rem !important; line-height: 1.2 !important; }
  .s-title { font-size: 1.7rem !important; line-height: 1.2 !important; }

  /* Botones */
  .btn-cta {
    width: 100% !important;
    max-width: 320px !important;
    margin: 20px auto !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

/* ===== FOOTER STYLES ===== */
footer {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--brand-950);
  text-align: center;
}

footer p {
  font-size: 0.85rem;
  color: var(--brand-500);
}

footer a {
  color: var(--brand-400);
  text-decoration: none;
  transition: var(--transition);
  margin: 0 8px;
  font-weight: 500;
}

footer a:hover {
  color: var(--accent-400);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem !important; }
  .s-title { font-size: 1.5rem !important; }
  footer a { display: block; margin: 10px 0; }
}