/* ========================================
   MAGNO Cristhian Barber Shop — CSS
   Paleta: verde oscuro #0f2f2a, dorado #c8a46b, negro
   ======================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- VARIABLES ---- */
:root {
  --verde: #0f2f2a;
  --verde-dark: #071a17;
  --verde-light: #1a4a43;
  --dorado: #c8a46b;
  --dorado-light: #e0c48a;
  --dorado-dark: #a07840;
  --negro: #0a0a0a;
  --gris-oscuro: #111111;
  --gris: #ffffff;
  --texto: #1a1a1a;
  --texto-muted: #6b6560;
  --blanco: #ffffff;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 8px 30px rgba(200,164,107,0.25);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

em {
  font-style: italic;
  color: var(--dorado);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ---- REUSABLE COMPONENTS ---- */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dorado);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--verde);
  margin-bottom: 24px;
}

.section-title--light {
  color: var(--texto);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-primary:hover {
  background: #1ebe59;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--dorado);
  border: 2px solid var(--dorado);
}
.btn-secondary:hover {
  background: var(--dorado);
  color: var(--negro);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--dorado), var(--dorado-light));
  color: var(--negro);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--dorado-light), var(--dorado));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,164,107,0.4);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 1rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(7,26,23,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dorado);
  letter-spacing: 0.1em;
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--texto-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(232,224,212,0.8);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--dorado);
}

.nav-cta {
  background: var(--dorado) !important;
  color: var(--negro) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--dorado-light) !important;
  transform: translateY(-1px);
}

.nav-links a.active {
  color: var(--dorado);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dorado);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--verde-dark) 0%,
    var(--verde) 40%,
    #1a3d35 70%,
    var(--verde-dark) 100%
  );
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a46b' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(7,26,23,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 120px 24px 80px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--dorado);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--blanco);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(232,224,212,0.85);
  max-width: 640px;
  margin: 0 auto 36px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(15,47,42,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,164,107,0.2);
  border-radius: 16px;
  padding: 24px 40px;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.stat {
  text-align: center;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dorado);
  line-height: 1;
}

.stat-plus, .stat-percent {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dorado);
  line-height: 1;
  display: inline;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(232,224,212,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(200,164,107,0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--dorado), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: linear-gradient(135deg, var(--dorado-dark), var(--dorado), var(--dorado-light));
  padding: 20px 0;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  color: var(--negro);
  font-weight: 600;
  font-size: 0.85rem;
}

.trust-item i {
  font-size: 1rem;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(0,0,0,0.2);
}

/* ---- AUTHORITY ---- */
.authority {
  padding: 100px 0;
  background: #f5f0e8;
}

.authority-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.authority-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--verde), var(--verde-light));
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.authority-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  inset: 0;
}

.authority-img-wrap.no-img::before {
  content: '\f2b0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 6rem;
  color: var(--dorado);
  opacity: 0.3;
}

.authority-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--dorado);
  color: var(--negro);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.badge-years {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.authority-content .section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.authority-text {
  font-size: 1rem;
  color: #4a4540;
  margin-bottom: 16px;
  line-height: 1.7;
}

.authority-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.authority-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.authority-list i {
  color: var(--verde);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ---- DIFFERENTIATION ---- */
.differentiation {
  padding: 100px 0;
  background: var(--verde-dark);
}

.diff-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.diff-header .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diff-card {
  background: rgba(15,47,42,0.8);
  border: 1px solid rgba(200,164,107,0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.diff-card:hover {
  border-color: rgba(200,164,107,0.5);
  transform: translateY(-6px);
  background: rgba(26,74,67,0.8);
}

.diff-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--dorado-dark), var(--dorado));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.diff-icon i {
  font-size: 1.4rem;
  color: var(--negro);
}

.diff-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--blanco);
  margin-bottom: 12px;
}

.diff-card p {
  font-size: 0.9rem;
  color: var(--texto-muted);
  line-height: 1.6;
}

/* ---- COURSES ---- */
.courses {
  padding: 100px 0;
  background: #ffffff;
}

.courses-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.courses-header .section-title {
  color: var(--verde-dark);
}

.courses-intro {
  font-size: 1.05rem;
  color: #555;
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Course Card Base */
.course-card {
  background: #f7f4ef;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.course-card--basic {
  border-color: rgba(200,164,107,0.2);
}

.course-card--advanced {
  border-color: var(--dorado);
  background: linear-gradient(160deg, #fdf6e8 0%, #faf3e0 40%, #f7f0d8 100%);
  box-shadow: 0 0 0 1px var(--dorado), var(--shadow-gold);
}

.course-badge {
  display: inline-block;
  background: rgba(200,164,107,0.15);
  color: var(--dorado);
  border: 1px solid var(--dorado);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.course-badge--gold {
  background: var(--dorado);
  color: var(--negro);
}

.course-ribbon {
  position: absolute;
  top: 20px;
  right: -28px;
  background: linear-gradient(135deg, var(--dorado-dark), var(--dorado));
  color: var(--negro);
  padding: 6px 40px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(45deg);
  transform-origin: center;
  box-shadow: 0 2px 10px rgba(200,164,107,0.4);
}

.course-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.course-icon {
  width: 54px;
  height: 54px;
  background: rgba(200,164,107,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.course-icon i {
  font-size: 1.5rem;
  color: var(--dorado);
}

.course-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--verde-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.course-format {
  font-size: 0.82rem;
  color: #666;
}

.course-format i {
  color: var(--dorado);
  margin-right: 4px;
}

.course-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.course-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--verde-dark);
}

.course-price--gold {
  color: var(--dorado);
}

.course-price-note {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.4;
}

.course-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.7;
}

.course-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.course-content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #333;
}

.course-content i {
  color: var(--dorado);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.course-includes {
  background: rgba(200,164,107,0.12);
  border: 1px solid rgba(200,164,107,0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.includes-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dorado);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.includes-title i {
  margin-right: 6px;
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.includes-grid span {
  font-size: 0.82rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
}

.includes-grid i {
  color: var(--dorado);
}

.course-cert-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(15,47,42,0.06);
  border-left: 3px solid var(--verde-light);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  margin-bottom: 28px;
}

.course-cert-note--gold {
  background: rgba(200,164,107,0.08);
  border-left-color: var(--dorado);
}

.course-cert-note i {
  color: var(--verde-light);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.course-cert-note--gold i {
  color: var(--dorado);
}

.course-cert-note p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
}

/* ---- COMPARISON ---- */
.comparison {
  padding: 80px 0;
  background: var(--verde-dark);
}

.comparison-header {
  text-align: center;
  margin-bottom: 48px;
}

.comparison-header .section-title {
  color: var(--texto);
}

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(15,47,42,0.5);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
  color: rgba(232,224,212,0.85);
}

.comparison-table th {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  background: rgba(15,47,42,0.9);
  color: var(--dorado);
  padding: 24px;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: rgba(232,224,212,0.85);
}

.comparison-table .col-basic {
  color: var(--dorado);
}

.comparison-table .col-advanced {
  color: var(--dorado);
  background: rgba(200,164,107,0.05);
}

.comparison-table .highlight {
  background: rgba(200,164,107,0.06);
  font-weight: 600;
  color: var(--dorado-light);
}

.text-gold { color: var(--dorado); }
.text-muted { color: var(--texto-muted); }

/* ---- BENEFITS ---- */
.benefits {
  padding: 100px 0;
  background: #f5f0e8;
}

.benefits-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(200,164,107,0.25);
  border-radius: var(--radius);
  transition: var(--transition);
}

.benefit-item:hover {
  border-color: var(--dorado);
  background: #fffaf2;
  transform: translateY(-4px);
}

.benefit-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(200,164,107,0.25);
  line-height: 1;
  flex-shrink: 0;
}

.benefit-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--verde-dark);
  margin-bottom: 8px;
}

.benefit-body p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

/* ---- EXPERIENCE ---- */
.experience {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(135deg, var(--verde-dark) 0%, var(--verde) 50%, var(--verde-dark) 100%);
  overflow: hidden;
}

.experience--photo {
  background:
    linear-gradient(135deg, rgba(7,26,23,0.88) 0%, rgba(15,47,42,0.80) 50%, rgba(7,26,23,0.90) 100%),
    url('images/cristhian-action.jpg') center center / cover no-repeat;
}

.experience::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 25rem;
  color: rgba(200,164,107,0.04);
  line-height: 1;
  pointer-events: none;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,164,107,0.05) 0%, transparent 70%);
}

.experience-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.experience-content .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 28px;
}

.experience-text {
  font-size: 1.05rem;
  color: rgba(232,224,212,0.8);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 100px 0;
  background: #f5f0e8;
}

.testimonials .section-eyebrow {
  color: var(--verde);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header .section-title {
  color: var(--verde-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 50px rgba(0,0,0,0.12);
}

.testimonial-card--featured {
  background: var(--verde);
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(15,47,42,0.3);
}

.testimonial-card--featured .testimonial-text,
.testimonial-card--featured .testimonial-name {
  color: var(--blanco);
}

.testimonial-card--featured .testimonial-role {
  color: rgba(232,224,212,0.6);
}

.testimonial-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(200,164,107,0.3);
  font-size: 2rem;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--dorado);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: #4a4540;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--dorado-dark), var(--dorado));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--negro);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: #1a1a1a;
}

.testimonial-role {
  font-size: 0.8rem;
  color: #888;
}

/* ---- FINAL CTA ---- */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--verde-dark) 0%, var(--verde) 50%, var(--verde-dark) 100%);
  position: relative;
  overflow: hidden;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8a46b' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='30'/%3E%3Ccircle cx='10' cy='10' r='10'/%3E%3Ccircle cx='90' cy='90' r='10'/%3E%3C/g%3E%3C/svg%3E");
}

.final-cta-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--blanco);
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(232,224,212,0.75);
  margin-bottom: 56px;
}

.cta-cards {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-option {
  background: rgba(15,47,42,0.6);
  border: 1px solid rgba(200,164,107,0.25);
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  min-width: 280px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.cta-option:hover {
  border-color: rgba(200,164,107,0.5);
  transform: translateY(-6px);
}

.cta-option--advanced {
  border-color: var(--dorado);
  background: rgba(30,25,0,0.7);
}

.cta-option-icon {
  width: 60px;
  height: 60px;
  background: rgba(200,164,107,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.cta-option-icon i {
  font-size: 1.5rem;
  color: var(--dorado);
}

.cta-option-icon--gold {
  background: linear-gradient(135deg, var(--dorado-dark), var(--dorado));
}

.cta-option-icon--gold i {
  color: var(--negro);
}

.cta-option h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--blanco);
  margin-bottom: 6px;
}

.cta-option p {
  font-size: 0.85rem;
  color: var(--texto-muted);
  margin-bottom: 12px;
}

.cta-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blanco);
  margin-bottom: 20px;
  display: block;
}

.cta-price--gold {
  color: var(--dorado);
}

.cta-divider-text {
  font-size: 1.2rem;
  color: var(--texto-muted);
  font-style: italic;
}

.cta-note {
  margin-top: 36px;
  font-size: 0.85rem;
  color: var(--texto-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-note i {
  color: var(--verde-light);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--verde-dark);
  border-top: 1px solid rgba(200,164,107,0.3);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--dorado);
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.footer-logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--texto-muted);
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--texto-muted);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(200,164,107,0.1);
  border: 1px solid rgba(200,164,107,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dorado);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--dorado);
  color: var(--negro);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--dorado);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,164,107,0.2);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li,
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--texto-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--dorado);
}

.footer-col ul li i {
  color: var(--dorado);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(200,164,107,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--texto-muted);
}

.footer-hashtags {
  font-size: 0.78rem;
  color: var(--dorado);
  opacity: 0.6;
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 36px rgba(37,211,102,0.6);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #1a1a1a;
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.6); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .authority-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80vw;
    max-width: 320px;
    background: var(--verde-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    z-index: 998;
    transition: var(--transition);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; z-index: 999; }
  .nav-links .nav-cta { margin-top: 16px; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 24px;
  }

  .stat { padding: 0 16px; }
  .stat-divider { display: none; }

  .authority-grid { grid-template-columns: 1fr; }
  .authority-img-wrap { min-height: 320px; }
  .authority-badge { width: 72px; height: 72px; }
  .badge-years { font-size: 1.4rem; }

  .diff-grid { grid-template-columns: 1fr 1fr; }

  .courses-grid { grid-template-columns: 1fr; }

  .benefits-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { transform: none; }
  .testimonial-card--featured:hover { transform: translateY(-6px); }

  .trust-container { gap: 8px; }
  .trust-item { padding: 6px 12px; font-size: 0.78rem; }
  .trust-divider { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-cards { flex-direction: column; align-items: center; }
  .cta-option { width: 100%; max-width: 340px; }
  .cta-divider-text { display: none; }

  .comparison-table th,
  .comparison-table td { padding: 12px 14px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: center; }
  .diff-grid { grid-template-columns: 1fr; }
  .course-card { padding: 28px 20px; }
  .includes-grid { grid-template-columns: 1fr; }
  .btn { font-size: 0.88rem; padding: 12px 22px; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 20px; right: 20px; }
}
