/* ============================================
   INDEX PAGE STYLES
   ============================================ */

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1.5rem 12rem;
}

.hero-sun {
  width: clamp(200px, 30vw, 420px);
  height: clamp(200px, 30vw, 420px);
  top: -80px;
  right: -60px;
}

.hero-cloud-left {
  width: clamp(200px, 35vw, 500px);
  bottom: 160px;
  left: -40px;
}

.hero-cloud-right {
  width: clamp(180px, 30vw, 450px);
  bottom: 120px;
  right: -40px;
}

.hero-logo {
  width: clamp(100px, 20vw, 180px);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plaza-brown);
  background: rgba(244,192,18,0.22);
  border: 1px solid rgba(244,192,18,0.40);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gray-800);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-characters {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
  z-index: 1;
}

.hero-char {
  height: clamp(180px, 28vw, 380px);
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}

.hero-char-rey {
  margin-left: 5vw;
  animation: float 4.5s ease-in-out infinite;
}

.hero-char-esposa {
  margin-right: 5vw;
  animation: float 4s ease-in-out infinite 0.5s;
}

@media (max-width: 640px) {
  .hero-char-esposa, .hero-char-rey { height: 160px; }
  .hero { padding-bottom: 14rem; }
}

/* ===== FEATURES ===== */
.features-section {
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card--wide {
  grid-column: 1 / -1;
}

.feature-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.feature-icon.gold   { background: rgba(244,192,18,0.18); color: var(--gold-dark); }
.feature-icon.blue   { background: rgba(32,64,176,0.14);  color: var(--blue); }
.feature-icon.teal   { background: rgba(24,165,184,0.16); color: var(--teal); }
.feature-icon.purple { background: rgba(208,48,160,0.13); color: var(--plaza-magenta); }

.feature-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
}

.feature-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-800);
}

.feature-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ===== APP PREVIEW ===== */
.preview-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(15,23,42,0.05) 50%, transparent);
  position: relative;
  overflow: hidden;
}

.preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.preview-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.preview-text p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.preview-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.chip {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.preview-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.tv-frame {
  width: 100%;
  max-width: 480px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(37,99,235,0.2);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tv-screen {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
}

.tv-screen-title {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: clamp(0.7rem, 2vw, 1.2rem);
  -webkit-text-stroke: 1px rgba(255,255,255,0.5);
  paint-order: stroke fill;
}

.tv-animals-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tv-animal-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.5rem;
  padding: 0.4rem 0.6rem;
  text-align: center;
  min-width: 52px;
}

.tv-animal-emoji {
  font-size: 1.5rem;
  display: block;
}

.tv-animal-num {
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .preview-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 6rem 1.5rem;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 780px;
  margin: 3rem auto 0;
}

.pricing-card {
  position: relative;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card.featured {
  border: 2px solid var(--gold);
  background: rgba(255,255,255,0.9);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(37,99,235,0.06));
  pointer-events: none;
}

.pricing-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--navy);
}

.price-period {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}

.pricing-divider {
  height: 1px;
  background: var(--gray-200);
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.pricing-features-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--gray-800);
}

.pricing-features-list li .check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--gray-600);
  text-align: center;
}

/* ===== REQUIREMENTS ===== */
.requirements-section {
  padding: 5rem 1.5rem;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.req-card {
  padding: 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.req-icon {
  font-size: 2.5rem;
  color: var(--gold-dark);
}

.req-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
}

.req-value {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ===== TV MOCKUP ===== */
.tv-timestamp {
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  margin-top: 0.5rem;
}

/* ===== PRICING EXTRAS ===== */
.pricing-plan-accent  { color: var(--gold-dark); }
.pricing-note--featured { color: var(--gold-dark); font-weight: 600; }

/* ===== SUPPORT CHANNELS ===== */
.support-channels-card {
  max-width: 600px;
  margin: 3rem auto 0;
  text-align: center;
}

.support-channels-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ===== CTA BOX ===== */
.cta-fine-print {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===== PERMISSIONS ===== */
.permissions-section {
  padding: 4rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 720px)
{
  .permissions-section {
    padding: 4rem 1.5rem 0 1.5rem;
  }
}

.permissions-mobile { display: none; }
.permissions-mobile .faq-list { margin-top: 0; }

@media (max-width: 720px) {
  .permissions-desktop { display: none; }
  .permissions-mobile  { display: flex; }
}

.permissions-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.permissions-table thead th {
  background: var(--navy);
  color: white;
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.permissions-table tbody td {
  padding: 0.875rem 1.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-800);
}

.permissions-table tbody tr:last-child td {
  border-bottom: none;
}

.permissions-table tbody tr:hover td {
  background: rgba(245,158,11,0.05);
}

/* ===== STEPS / GET STARTED ===== */
.steps-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(15,23,42,0.04) 50%, transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  counter-reset: steps;
}

.step-card {
  padding: 2rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  font-family: var(--font-display);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 5rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.6);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: var(--navy);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold-dark);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 5rem 1.5rem;
  position: relative;
  overflow: visible;
  background: linear-gradient(158deg,
    #180C06 0%,
    #241408 40%,
    #2C1A0A 65%,
    #180A04 100%
  );
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 28% 50%, rgba(244,192,18,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 70% 60% at 72% 50%, rgba(208,68,34,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(24,165,184,0.06) 0%, transparent 55%);
  pointer-events: none;
  overflow: hidden;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 2.5rem;
  background: linear-gradient(140deg, #100804 0%, #1E1008 35%, #281808 62%, #140A04 100%);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(244,192,18,0.30),
    0 0 60px rgba(244,192,18,0.28),
    0 0 120px rgba(208,68,34,0.14),
    0 25px 70px rgba(0,0,0,0.50);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--blue), var(--gold));
  background-size: 200% 100%;
  animation: cta-border-shift 4s linear infinite;
}

@keyframes cta-border-shift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.cta-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
  animation: cta-sweep 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cta-sweep {
  0%, 100% { transform: translateX(-30%) rotate(10deg); opacity: 0; }
  40%       { opacity: 1; }
  60%       { transform: translateX(160%) rotate(10deg); opacity: 1; }
  61%       { opacity: 0; }
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white;
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SUPPORT ===== */
.support-section {
  padding: 5rem 1.5rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.support-card {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.support-icon {
  font-size: 2.25rem;
  color: var(--blue);  
}

.support-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.support-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.support-link {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--blue);
  text-decoration: underline;
}

/* ===== HERO ENHANCEMENTS ===== */
.hero-sun-ring {
  /* inherits position from shared.css */
}

/* Stronger character glow */
.hero-char-rey {
  filter: drop-shadow(0 0 18px rgba(245,158,11,0.5)) drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}

.hero-char-esposa {
  filter: drop-shadow(0 0 18px rgba(37,99,235,0.45)) drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}

/* ===== PREVIEW GLOW FRAME ===== */
.preview-glow-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 4px;
  background: linear-gradient(135deg, var(--gold), var(--blue), var(--gold-light));
  box-shadow: 0 0 40px rgba(245,158,11,0.3), 0 0 80px rgba(37,99,235,0.15), var(--shadow-lg);
  animation: preview-glow 4s ease-in-out infinite;
}

@keyframes preview-glow {
  0%, 100% { box-shadow: 0 0 35px rgba(245,158,11,0.3), 0 0 70px rgba(37,99,235,0.12), var(--shadow-lg); }
  50%       { box-shadow: 0 0 55px rgba(245,158,11,0.5), 0 0 100px rgba(37,99,235,0.2), var(--shadow-lg); }
}

.preview-glow-frame .preview-screenshot {
  border-radius: calc(var(--radius-lg) - 4px);
  display: block;
  width: 100%;
}

/* ===== PRICING CARD FEATURED GLOW ===== */
.pricing-card.featured {
  animation: featured-glow 2.8s ease-in-out infinite;
  border-width: 2px;
}

/* ===== STEPS SECTION POSITION ===== */
.steps-section { position: relative; }

/* ===== FEATURES SECTION POSITION ===== */
.features-section { position: relative; }

/* ===== PRICING SECTION POSITION ===== */
.pricing-section { position: relative; }

/* step-number styles handled in plaza-palette section below */

/* ===== CTA CHARACTER FLANKS ===== */

.cta-char {
  position: absolute;
  bottom: 0;
  height: clamp(200px, 22vw, 320px);
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  display: none;
}

.cta-char--left {
  left: max(0px, calc((100vw - 700px) / 2 - clamp(200px, 22vw, 320px) - 10px));
  animation: float 4.5s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(245,158,11,0.3)) drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.cta-char--right {
  right: max(0px, calc((100vw - 700px) / 2 - clamp(200px, 22vw, 320px) - 10px));
  animation: float 4s ease-in-out infinite 0.7s;
  filter: drop-shadow(0 8px 24px rgba(37,99,235,0.3)) drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

@media (min-width: 1100px) {
  .cta-char { display: block; }
}

/* ===== HERO — cielo de pueblo venezolano ===== */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 72% at 90% -6%, rgba(244,130,74,0.75) 0%, rgba(240,100,40,0.45) 30%, rgba(244,180,70,0.20) 55%, transparent 68%),
    radial-gradient(ellipse 60% 50% at 8%  108%, rgba(24,165,184,0.28) 0%, transparent 52%),
    linear-gradient(158deg, rgba(244,130,74,0.55) 0%, rgba(244,192,18,0.15) 35%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ===== FEATURES — tarde cálida amarilla ===== */
.features-section {
  position: relative;
  background: linear-gradient(170deg,
    rgba(244,192,18,0.16) 0%,
    rgba(244,192,18,0.08) 45%,
    rgba(244,192,18,0.04) 100%
  );
}

.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(244,192,18,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 90% 15%, rgba(244,130,74,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ===== PRICING — noche VIP con acentos dorados ===== */
.pricing-section {
  position: relative;
  background: linear-gradient(152deg,
    #14100A 0%,
    #1E1618 32%,
    #1A1420 60%,
    #10080E 100%
  );
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 65% at 18% 38%, rgba(244,192,18,0.12) 0%, transparent 62%),
    radial-gradient(ellipse 60% 55% at 82% 62%, rgba(32,64,176,0.14) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 50% 0%,  rgba(208,68,34,0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.pricing-section .section-title.stroke-text {
  color: var(--gold);
  -webkit-text-stroke-color: rgba(0,0,0,0.50);
  text-shadow: 0 0 40px rgba(244,192,18,0.60), 0 4px 14px rgba(0,0,0,0.6);
}

.pricing-section .section-subtitle {
  color: rgba(255,235,180,0.72);
}

.pricing-section .hero-eyebrow {
  background: rgba(244,192,18,0.22);
  color: var(--gold-light);
  border: 1px solid rgba(244,192,18,0.36);
}

/* ===== STEPS — salmón de atardecer ===== */
.steps-section {
  position: relative;
  background: linear-gradient(175deg,
    rgba(244,130,74,0.14) 0%,
    rgba(244,100,40,0.07) 50%,
    rgba(244,130,74,0.10) 100%
  );
}

.steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(244,192,18,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ===== REQUIREMENTS — teal del pueblo ===== */
.requirements-section {
  background: linear-gradient(180deg,
    rgba(24,165,184,0.08) 0%,
    rgba(24,165,184,0.04) 55%,
    transparent 100%
  );
}

/* ===== SUPPORT — azul real ===== */
.support-section {
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(32,64,176,0.07) 50%,
    transparent 100%
  );
}

/* ===== FAQ — papel cálido ===== */
.faq-section {
  background: linear-gradient(180deg,
    rgba(244,192,18,0.12) 0%,
    rgba(244,130,74,0.06) 50%,
    rgba(244,192,18,0.05) 100%
  );
}

/* ===== SUPPORT CHANNELS WHATSAPP GLOW ===== */
.support-channels-list a[href*="whatsapp"] {
  color: #25D366;
}

.fa-whatsapp {
  color: #25D366;
  filter: drop-shadow(0 0 4px rgba(37,211,102,0.5));
}

/* ===== FEATURE ICON GLOW ===== */
.feature-icon.gold   { box-shadow: 0 0 14px rgba(244,192,18,0.35); }
.feature-icon.blue   { box-shadow: 0 0 14px rgba(32,64,176,0.28); }
.feature-icon.teal   { box-shadow: 0 0 14px rgba(24,165,184,0.30); }
.feature-icon.purple { box-shadow: 0 0 14px rgba(208,48,160,0.28); }

/* ===== REQ ICON GLOW ===== */
.req-icon {
  color: var(--plaza-terra);
  filter: drop-shadow(0 0 7px rgba(208,68,34,0.40));
}

/* ===== SUPPORT ICON ===== */
.support-icon { color: var(--plaza-royal); }

/* ===== CHECK MARKS ===== */
.check { color: var(--teal) !important; }
.feature-list li::before { color: var(--teal); }

/* ===== CHIP ===== */
.chip {
  background: rgba(255,248,228,0.90);
  border-color: rgba(244,192,18,0.40);
  color: var(--gray-800);
}

/* ===== STEP NUMBER ===== */
.step-number {
  background: linear-gradient(135deg, var(--plaza-terra), #A83418);
  box-shadow: 0 4px 14px rgba(208,68,34,0.45), 0 0 24px rgba(208,68,34,0.22);
}

@keyframes step-glow {
  0%, 100% { box-shadow: 0 4px 14px rgba(208,68,34,0.45), 0 0 24px rgba(208,68,34,0.22); }
  50%       { box-shadow: 0 4px 22px rgba(208,68,34,0.70), 0 0 45px rgba(244,192,18,0.30); }
}

/* ===== PRICING CARD FEATURED on dark bg ===== */
@keyframes featured-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(244,192,18,0.40), 0 8px 40px rgba(0,0,0,0.20);
    border-color: var(--gold);
  }
  50% {
    box-shadow: 0 0 50px rgba(244,192,18,0.65), 0 0 90px rgba(244,192,18,0.25), 0 8px 40px rgba(0,0,0,0.20);
    border-color: var(--gold-light);
  }
}

/* ===== FAQ ITEM on warm bg ===== */
.faq-item {
  background: rgba(255,248,228,0.82);
  border-color: rgba(244,192,18,0.28);
}

/* ===== SUPPORT CHANNELS CARD ===== */
.support-channels-card {
  background: rgba(255,248,228,0.88);
  border-color: rgba(244,192,18,0.32);
}
