﻿/* ============================================================
   MAESTRA AURORA — Stylesheet Principal
   Paleta: Oscuro Elegante + Dorado + Carmesí Acento
   Fuentes: Cinzel (títulos) + Raleway (cuerpo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg:           #08080f;
  --bg2:          #0d0d1a;
  --card-bg:      rgba(14, 14, 26, 0.95);
  --purple-deep:  #b8860b;
  --purple:       #d4af37;
  --purple-mid:   #e0c050;
  --purple-vivid: #f0d060;
  --gold:         #d4af37;
  --gold-light:   #e8c860;
  --gold-pale:    rgba(212, 175, 55, 0.12);
  --gold-glow:    rgba(212, 175, 55, 0.40);
  --green-wa:     #25D366;
  --text:         #f0e8d0;
  --text-muted:   #9a8878;
  --radius:       12px;
  --transition:   0.3s ease;
  --font-title:   'Cinzel', Georgia, serif;
  --font-body:    'Raleway', Arial, sans-serif;
  --max-w:        1200px;
  --shadow-gold:  0 8px 40px rgba(212, 175, 55, 0.30);
  --shadow-purple: 0 8px 40px rgba(212, 175, 55, 0.20);
  --shadow-mystic: 0 4px 32px rgba(212, 175, 55, 0.15), 0 1px 8px rgba(0,0,0,0.60);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 15%, rgba(212,175,55, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(139, 0, 0, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 50% 50%, rgba(212,175,55, 0.03) 0%, transparent 70%);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-title);
  color: var(--purple-mid);
  line-height: 1.25;
}
h1 { font-size: clamp(2.1rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.65rem); }
p  { color: var(--text); margin-bottom: 1rem; }
strong { color: var(--purple-mid); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section     { padding: 5rem 0; }
.section-alt { background: var(--bg2); }

.section-header        { text-align: center; margin-bottom: 3rem; }
.section-header h2     { margin-bottom: .5rem; }
.section-header p      { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.divider {
  width: 70px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: .85rem auto;
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .92rem 2rem;
  border-radius: 50px; border: none;
  font-family: var(--font-body); font-weight: 700; font-size: 1.05rem;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap; text-decoration: none;
  letter-spacing: .3px;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #8a6200);
  color: #000;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--gold-glow);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--purple-mid);
  color: var(--purple-mid);
}
.btn-outline:hover { background: rgba(212,175,55,.08); transform: translateY(-2px); }
.btn-wa {
  background: linear-gradient(135deg, #1da851, #25D366);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  font-size: 1.1rem;
  padding: 1rem 2.2rem;
}
.btn-wa:hover {
  background: linear-gradient(135deg, #25D366, #1da851);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
}
.btn-sm  { padding: .55rem 1.2rem; font-size: .88rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: .9rem 0;
  background: rgba(8, 8, 15, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212,175,55, 0.20);
  box-shadow: 0 2px 24px rgba(0,0,0, 0.50), 0 1px 0 rgba(212,175,55,0.12);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#site-header.scrolled {
  background: rgba(8, 8, 15, 0.98);
  box-shadow: 0 4px 32px rgba(0,0,0, 0.70), 0 1px 0 rgba(212,175,55,0.16);
  padding: .6rem 0;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .7rem; }
.logo-star { font-size: 1.6rem; color: var(--purple-mid); line-height: 1; }
.logo-name {
  font-family: var(--font-title);
  font-size: 1.1rem; font-weight: 700;
  color: var(--purple-mid); letter-spacing: 2px;
  display: block; line-height: 1.1;
}
.logo-sub {
  font-size: .58rem; color: var(--text-muted);
  letter-spacing: 3px; text-transform: uppercase;
  display: block;
}

/* Nav links desktop */
.site-nav ul {
  display: flex; align-items: center; gap: .15rem;
}
.site-nav a {
  padding: .45rem .85rem; border-radius: 6px;
  font-size: .88rem; font-weight: 500;
  color: var(--text); transition: var(--transition);
}
.site-nav a:hover,
.site-nav a.active { color: var(--purple-mid); background: rgba(212,175,55,.08); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: .75rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  padding: 4px; z-index: 1100; position: relative;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--purple-mid); border-radius: 2px;
  transition: var(--transition);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO (INICIO) - Video siempre activo
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: #000;
  padding: 120px 1.5rem 70px;
  text-align: center;
}

/* Video de fondo - siempre visible en desktop y movil */
.hero-video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay oscuro - siempre visible */
.hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg,
      rgba(0, 0, 0, .72)  0%,
      rgba(0, 0, 0, .58) 50%,
      rgba(0, 0, 0, .70)  100%);
}

/* Estrellas - brillantes sobre fondo oscuro */
.stars-a, .stars-b, .stars-c {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
  z-index: 2;
}
.stars-a::after {
  content: '';
  position: absolute;
  width: 2px; height: 2px;
  background: transparent;
  box-shadow:
    88px  42px 0 1px rgba(255,255,255,.80),
    192px  18px 0 1px rgba(212,175,55,.85),
    310px  75px 0 1px rgba(255,255,255,.70),
    445px  30px 0 2px rgba(212,175,55,.80),
    562px  88px 0 1px rgba(255,255,255,.75),
    680px  22px 0 1px rgba(255,255,255,.65),
    798px  60px 0 1px rgba(212,175,55,.78),
    910px  14px 0 2px rgba(255,255,255,.85),
    1050px 48px 0 1px rgba(255,255,255,.65),
    1170px 90px 0 2px rgba(212,175,55,.75),
    55px  160px 0 1px rgba(255,255,255,.60),
    180px 220px 0 1px rgba(212,175,55,.65),
    295px 145px 0 1px rgba(255,255,255,.70),
    420px 280px 0 1px rgba(255,255,255,.55),
    540px 195px 0 2px rgba(212,175,55,.62),
    660px 330px 0 1px rgba(255,255,255,.50),
    775px 155px 0 1px rgba(255,255,255,.68),
    888px 245px 0 1px rgba(212,175,55,.60),
    1000px 300px 0 1px rgba(255,255,255,.55),
    1130px 175px 0 1px rgba(255,255,255,.65),
    140px 380px 0 1px rgba(212,175,55,.50),
    260px 430px 0 1px rgba(255,255,255,.55),
    390px 360px 0 1px rgba(255,255,255,.52),
    510px 470px 0 1px rgba(212,175,55,.48),
    630px 395px 0 1px rgba(255,255,255,.60),
    750px 445px 0 1px rgba(255,255,255,.45),
    870px 380px 0 1px rgba(212,175,55,.55),
    980px 455px 0 1px rgba(255,255,255,.50),
    1100px 390px 0 1px rgba(255,255,255,.45),
    70px  500px 0 1px rgba(212,175,55,.50),
    350px 520px 0 1px rgba(255,255,255,.45),
    620px 540px 0 1px rgba(255,255,255,.42),
    900px 510px 0 1px rgba(212,175,55,.48),
    1150px 490px 0 1px rgba(255,255,255,.55);
  animation: twinkle1 5s ease-in-out infinite alternate;
}
.stars-b::after {
  content: '';
  position: absolute;
  width: 2px; height: 2px;
  background: transparent;
  box-shadow:
    200px  95px 0 1px rgba(212,175,55,.72),
    400px 175px 0 1px rgba(255,255,255,.68),
    600px 105px 0 1px rgba(255,255,255,.60),
    800px 195px 0 2px rgba(212,175,55,.70),
    1000px 125px 0 1px rgba(255,255,255,.58),
    100px  260px 0 1px rgba(255,255,255,.60),
    300px 345px 0 1px rgba(212,175,55,.65),
    500px 280px 0 1px rgba(255,255,255,.55),
    700px 360px 0 1px rgba(255,255,255,.60),
    900px 305px 0 1px rgba(212,175,55,.58),
    1100px 245px 0 1px rgba(255,255,255,.65),
    50px  510px 0 1px rgba(255,255,255,.52),
    250px 555px 0 1px rgba(212,175,55,.48),
    450px 505px 0 1px rgba(255,255,255,.55),
    650px 565px 0 1px rgba(255,255,255,.48),
    850px 525px 0 1px rgba(212,175,55,.55),
    150px 130px 0 1px rgba(255,255,255,.65),
    750px 80px 0 1px rgba(255,255,255,.58),
    1050px 350px 0 1px rgba(212,175,55,.60),
    380px 460px 0 1px rgba(255,255,255,.48);
  animation: twinkle1 7s ease-in-out infinite alternate-reverse;
  animation-delay: -3s;
}
.stars-c::after {
  content: '';
  position: absolute;
  width: 3px; height: 3px;
  background: transparent;
  box-shadow:
    320px 55px  0 3px rgba(212,175,55,.90),
    720px 35px  0 3px rgba(255,255,255,.85),
    480px 200px 0 3px rgba(212,175,55,.88),
    960px 150px 0 3px rgba(255,255,255,.82),
    160px 420px 0 3px rgba(212,175,55,.80),
    820px 410px 0 3px rgba(255,255,255,.85),
    560px 350px 0 2px rgba(212,175,55,.82),
    1100px 80px 0 3px rgba(255,255,255,.80),
    250px 280px 0 2px rgba(212,175,55,.85);
  animation: twinkle1 3s ease-in-out infinite alternate;
  animation-delay: -1.5s;
}
@keyframes twinkle1 {
  0%   { opacity: .55; transform: translateY(0) scale(1); }
  100% { opacity: 1;   transform: translateY(-2px) scale(1.1); }
}

.hero-content { position: relative; z-index: 3; max-width: 840px; }
.hero-badge {
  display: inline-block;
  padding: .4rem 1.4rem;
  border: 1px solid rgba(212,175,55, .55);
  border-radius: 30px; margin-bottom: 1.5rem;
  font-size: .75rem; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(212,175,55, 1);
  background: rgba(0,0,0,.35);
  text-shadow: 0 0 4px rgba(0,0,0,.9), 0 1px 8px rgba(0,0,0,.8);
}
.hero h1 {
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-shadow:
    0 0 4px  rgba(0,0,0,.95),
    0 0 10px rgba(0,0,0,.90),
    0 0 22px rgba(0,0,0,.75),
    0 2px 40px rgba(0,0,0,.60);
}
.hero h1 em {
  color: #f0c040;
  font-style: normal;
  text-shadow:
    0 0 3px  rgba(0,0,0,1),
    0 0 8px  rgba(0,0,0,.95),
    0 0 18px rgba(0,0,0,.85),
    0 2px 32px rgba(0,0,0,.70);
}
.hero .hero-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,.95);
  text-shadow:
    0 0 4px  rgba(0,0,0,.95),
    0 0 12px rgba(0,0,0,.80),
    0 1px 20px rgba(0,0,0,.60);
  max-width: 640px; margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero .hero-sub strong {
  color: #f0c040;
  text-shadow:
    0 0 3px  rgba(0,0,0,1),
    0 0 8px  rgba(0,0,0,.95),
    0 0 18px rgba(0,0,0,.80);
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-symbol {
  font-size: 4rem; color: var(--purple-mid); margin-bottom: 1.5rem;
  display: block;
  animation: float 4s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(212,175,55,.60), 0 0 60px rgba(212,175,55,.30);
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center;
  gap: .4rem; color: rgba(255,255,255,.70); font-size: .72rem;
  letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
  text-shadow: 0 0 6px rgba(0,0,0,.90);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   BARRA DE CONFIANZA
   ============================================================ */
.trust-bar {
  background: linear-gradient(90deg, rgba(212,175,55,.06), rgba(212,175,55,.10), rgba(212,175,55,.06));
  border-top: 1px solid rgba(212,175,55,.18);
  border-bottom: 1px solid rgba(212,175,55,.18);
  padding: 2.25rem 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: center;
}
.trust-item .stat {
  display: block; font-family: var(--font-title);
  font-size: 2.6rem; color: var(--purple-mid); line-height: 1;
  text-shadow: 0 2px 16px rgba(212,175,55,.35);
}
.trust-item .stat-label {
  display: block; font-size: .82rem; color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase; margin-top: .4rem;
  font-weight: 600;
}

/* ============================================================
   TARJETAS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55, .18);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0, 0.40), 0 1px 6px rgba(212,175,55,0.08);
}
.card:hover {
  transform: translateY(-7px);
  border-color: rgba(212,175,55,.40);
  box-shadow: var(--shadow-gold), var(--shadow-mystic);
}
.card-icon {
  font-size: 2.6rem; color: var(--purple-mid);
  margin-bottom: 1rem; display: block; line-height: 1;
  text-shadow: 0 0 16px rgba(212,175,55,.40);
}
.card h3 { margin-bottom: .6rem; font-size: 1.2rem; }
.card p   { color: var(--text-muted); font-size: .92rem; margin-bottom: 1.25rem; line-height: 1.7; }
.card-cta {
  color: var(--purple-mid); font-size: .88rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: var(--transition);
}
.card-cta:hover { gap: .75rem; color: var(--gold); }
.card-price {
  font-family: var(--font-title);
  color: var(--gold); font-size: .88rem;
  padding-top: .9rem; margin-top: .9rem;
  border-top: 1px solid rgba(212,175,55,.18);
  display: block; margin-bottom: 1rem;
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius);
  padding: 2rem; position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,.40), 0 1px 6px rgba(212,175,55,.08);
}
.quote-mark {
  font-size: 5rem; line-height: 1;
  color: rgba(212,175,55,.12);
  font-family: Georgia, serif;
  position: absolute; top: .5rem; left: 1.25rem;
  pointer-events: none; user-select: none;
}
.testi-stars { color: var(--gold); margin-bottom: 1rem; font-size: .9rem; letter-spacing: 2px; }
.testi-text {
  font-style: italic; color: var(--text);
  margin-bottom: 1.5rem; position: relative;
  font-size: .95rem; line-height: 1.75;
}
.testi-author { display: flex; align-items: center; gap: .9rem; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.28));
  border: 2px solid rgba(212,175,55,.28);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-size: 1.1rem; color: var(--purple-mid); font-weight: 700;
}
.testi-name { font-weight: 600; color: var(--purple-mid); display: block; font-size: .95rem; }
.testi-loc  { font-size: .8rem; color: var(--text-muted); }

/* ============================================================
   CANALES DE CONTACTO
   ============================================================ */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.ch-btn {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius);
  transition: var(--transition); text-decoration: none; color: var(--text);
  box-shadow: 0 2px 14px rgba(0,0,0,.35);
}
.ch-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-mystic);
  border-color: rgba(212,175,55,.35);
}
.ch-ico {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
}
.ch-btn .label {
  font-size: .74rem; color: var(--text-muted);
  display: block; margin-bottom: .2rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.ch-btn .value { font-weight: 600; color: var(--purple-mid); font-size: .95rem; display: block; }

.ch-call   .ch-ico { background: rgba(138,79,168,.25); color: #c084fc; }
.ch-sms    .ch-ico { background: rgba(59,130,246,.2);  color: #60a5fa; }
.ch-email  .ch-ico { background: rgba(234,67,53,.2);   color: #f87171; }
.ch-wa     .ch-ico { background: rgba(37,211,102,.18); color: var(--green-wa); }
.ch-zoopin .ch-ico { background: rgba(212,175,55,.12); color: var(--gold); }
.ch-form   .ch-ico { background: rgba(167,139,250,.18); color: #a78bfa; }
.ch-fb     .ch-ico { background: rgba(66,103,178,.2);  color: #60a5fa; }

/* ============================================================
   FORMULARIO DE CONTACTO
   ============================================================ */
.contact-form-wrap {
  max-width: 640px; margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius); padding: 2.5rem;
  box-shadow: 0 6px 40px rgba(0,0,0,.45), 0 1px 8px rgba(212,175,55,.08);
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; margin-bottom: .45rem;
  font-size: .88rem; color: var(--text-muted); font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .82rem 1rem;
  background: rgba(20, 20, 36, 0.80);
  border: 1px solid rgba(212,175,55,.20);
  border-radius: 8px;
  color: var(--text); font-family: var(--font-body); font-size: .95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-mid);
  background: rgba(25,25,42,1);
  box-shadow: 0 0 0 3px rgba(212,175,55,.10);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea   { min-height: 115px; resize: vertical; }
.form-group select option { background: #0d0d1a; color: var(--text); }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .8rem; color: var(--text-muted); margin-top: .45rem; }
#form-success {
  display: none; text-align: center; padding: 2.5rem;
  color: var(--purple-mid);
}
#form-success i { font-size: 3.5rem; display: block; margin-bottom: 1rem; }

/* ============================================================
   BOTONES FLOTANTES (FABs)
   ============================================================ */
.fab-group {
  position: fixed; bottom: 1.5rem; z-index: 999;
  display: flex; flex-direction: column; gap: .65rem;
}
.fab-group.fab-left  { left: 1.5rem; }
.fab-group.fab-right { right: 1.5rem; }
.fab {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,.60);
  transition: var(--transition); text-decoration: none;
  position: relative;
}
.fab:hover { transform: scale(1.12); }
.fab-whatsapp  { background: var(--green-wa); }
.fab-messenger { background: linear-gradient(135deg, #0099ff, #a033ff); }
.fab-sms       { background: linear-gradient(135deg, #0070f3, #00b4d8); }
.fab-tip {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.88); color: var(--gold);
  padding: .28rem .75rem; border-radius: 20px;
  font-size: .78rem; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.fab-group.fab-right .fab-tip { right: calc(100% + .65rem); }
.fab-group.fab-left  .fab-tip { left: calc(100% + .65rem); }
.fab:hover .fab-tip { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: linear-gradient(160deg, #060610 0%, #080818 60%, #06060e 100%);
  border-top: 1px solid rgba(212,175,55,.15);
  padding: 3.5rem 0 1.5rem;
  box-shadow: inset 0 2px 20px rgba(0,0,0,.40);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand .logo { margin-bottom: .9rem; }
.footer-brand p { color: var(--text-muted); font-size: .87rem; max-width: 280px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.soc-ico {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-mid); font-size: .88rem;
  transition: var(--transition); text-decoration: none;
}
.soc-ico:hover { background: rgba(212,175,55,.16); transform: translateY(-2px); }
.footer-col h5 {
  font-family: var(--font-title); color: var(--purple-mid);
  font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: .9rem;
}
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul li a {
  color: var(--text-muted); font-size: .87rem; transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--purple-mid); }
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,.10);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-bottom p { color: var(--text-muted); font-size: .82rem; margin-bottom: 0; }
.footer-bottom a { color: var(--purple-mid); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   HERO INTERIOR (paginas internas)
   ============================================================ */
.page-hero {
  padding: 130px 1.5rem 4.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,.10) 0%, rgba(212,175,55,.04) 50%, transparent 80%),
    linear-gradient(180deg, #0a0a14 0%, var(--bg) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 15% 40%, rgba(212,175,55,.35), transparent),
    radial-gradient(3px 3px at 50% 25%, rgba(212,175,55,.40), transparent),
    radial-gradient(2px 2px at 80% 55%, rgba(255,255,255,.25), transparent),
    radial-gradient(2px 2px at 30% 65%, rgba(212,175,55,.28), transparent),
    radial-gradient(2px 2px at 70% 35%, rgba(255,255,255,.20), transparent);
}
.page-hero h1 { position: relative; z-index: 1; }
.page-hero > .container > p { color: var(--text-muted); position: relative; z-index: 1; margin-top: .6rem; }
.breadcrumb {
  font-size: .82rem; color: var(--text-muted);
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.breadcrumb a { color: var(--purple-mid); }
.breadcrumb a:hover { color: var(--gold); }

/* ============================================================
   SECCION CTA
   ============================================================ */
.cta-section {
  background:
    linear-gradient(135deg, rgba(212,175,55,.08), rgba(139,0,0,.06)),
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(212,175,55,.10) 0%, transparent 70%),
    #08081a;
  border-top: 1px solid rgba(212,175,55,.18);
  border-bottom: 1px solid rgba(212,175,55,.18);
  text-align: center; padding: 5.5rem 0;
}
.cta-section h2 { margin-bottom: .9rem; }
.cta-section p  {
  color: var(--text-muted); margin-bottom: 2rem; font-size: 1.1rem;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGINA NOSOTROS
   ============================================================ */
.about-wrap {
  display: grid; grid-template-columns: 1fr 1.65fr;
  gap: 3.5rem; align-items: start;
}
.about-photo { position: relative; }
.photo-frame {
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(212,175,55,.08), rgba(139,0,0,.15));
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem; color: var(--purple-mid); overflow: hidden;
  border: 1px solid rgba(212,175,55,.22);
  box-shadow: 0 8px 40px rgba(0,0,0,.50);
}
.photo-border {
  position: absolute; inset: -8px;
  border: 1px solid rgba(212,175,55,.18);
  border-radius: calc(var(--radius) + 8px);
  pointer-events: none;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p  { color: var(--text-muted); }
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .9rem; margin-top: 2rem;
}
.val-item {
  background: rgba(212,175,55, .06);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: 8px; padding: .95rem 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.val-item i    { color: var(--purple-mid); font-size: 1.3rem; width: 22px; text-align: center; }
.val-item span { font-size: .92rem; font-weight: 600; color: var(--text); }

/* ============================================================
   NOTA DE PRECIOS
   ============================================================ */
.prices-note {
  background: rgba(212,175,55, .06);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: var(--radius); padding: 1.4rem 1.75rem;
  text-align: center; margin-top: 2.5rem;
}
.prices-note p { color: var(--text-muted); font-size: .95rem; margin-bottom: 0; }
.prices-note strong { color: var(--purple-mid); }

/* ============================================================
   POLITICA DE PRIVACIDAD
   ============================================================ */
.privacy-body {
  max-width: 800px; margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius); padding: 2.5rem;
  box-shadow: 0 4px 28px rgba(0,0,0,.45);
}
.privacy-body .last-updated {
  font-size: .82rem; color: var(--text-muted); font-style: italic; margin-bottom: 2rem;
}
.privacy-body h3 {
  color: var(--purple-mid); font-size: 1.05rem;
  margin: 2rem 0 .6rem;
  border-bottom: 1px solid rgba(212,175,55,.12); padding-bottom: .4rem;
}
.privacy-body p, .privacy-body li {
  color: var(--text-muted); font-size: .92rem; margin-bottom: .65rem;
}
.privacy-body ul { padding-left: 1.5rem; }
.privacy-body ul li { list-style: disc; }
.privacy-body a { color: var(--purple-mid); }
.privacy-body a:hover { color: var(--gold); }

/* ============================================================
   UTILIDADES
   ============================================================ */
.text-gold   { color: var(--gold) !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(212,175,55,.12);
  padding: 1.25rem 0;
}
.faq-question {
  background: none; border: none; width: 100%;
  text-align: left; color: var(--text); font-size: 1rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; cursor: pointer; transition: color var(--transition);
  padding: 0;
}
.faq-question:hover { color: var(--purple-mid); }
.faq-question i { color: var(--purple-mid); transition: transform var(--transition); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { display: none; padding-top: .8rem; color: var(--text-muted); font-size: .92rem; line-height: 1.8; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  /* Nav drawer oscuro */
  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    height: auto;
    background: #0d0d1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 5rem 2rem 2.5rem;
    transform: translateY(-110%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    box-shadow: 0 8px 40px rgba(0,0,0,.80);
    pointer-events: none;
  }
  .site-nav.open {
    transform: translateY(0);
    pointer-events: all;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 340px;
    text-align: center;
  }
  .site-nav ul li {
    border-bottom: 1px solid rgba(212,175,55,.15);
    width: 100%;
  }
  .site-nav ul li:first-child {
    border-top: 1px solid rgba(212,175,55,.15);
  }
  .site-nav a {
    font-size: .82rem;
    padding: 1.15rem 0;
    color: var(--purple-mid);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: var(--font-title);
    font-weight: 600;
    display: block;
    width: 100%;
    background: transparent;
    transition: color var(--transition), padding-left var(--transition);
  }
  .site-nav a:hover,
  .site-nav a.active {
    color: var(--gold-light);
    background: rgba(212,175,55,.06);
  }
  .hamburger { display: flex; z-index: 1100; }
  .hamburger[aria-expanded="true"] span { background: var(--purple-mid); }
  .nav-backdrop { display: none !important; }
}
@media (max-width: 768px) {
  .trust-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-top  { grid-template-columns: 1fr; }
  .about-wrap  { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3.5rem 0; }
  .section-header  { margin-bottom: 2rem; }
  .section-header p { font-size: .95rem; }
  .privacy-body    { padding: 1.75rem 1.25rem; }
}

/* ============================================================
   MENU DE CONSULTAS - Paquetes con precio
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.price-card {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55, .22);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--transition);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,.45), 0 1px 6px rgba(212,175,55,.08);
}
.price-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple-mid), var(--gold), var(--purple-mid));
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,175,55,.45);
  box-shadow: var(--shadow-mystic), var(--shadow-gold);
}
.price-card.featured {
  border-color: rgba(212,175,55,.40);
  box-shadow: 0 0 0 2px rgba(212,175,55,.18), var(--shadow-mystic);
}
.price-card.featured::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  height: 5px;
}
.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-size: .7rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 20px;
  margin-bottom: 1rem;
}
.price-icon { font-size: 2.8rem; margin-bottom: .75rem; display: block; text-shadow: 0 0 16px rgba(212,175,55,.40); }
.price-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.price-card .price-subtitle { color: var(--text-muted); font-size: .88rem; margin-bottom: 1.25rem; font-style: italic; }
.price-amount {
  font-family: var(--font-title);
  font-size: 2.8rem; font-weight: 700;
  color: var(--purple-mid);
  line-height: 1;
  text-shadow: 0 2px 16px rgba(212,175,55,.35);
  display: block; margin-bottom: .3rem;
}
.price-duration {
  font-size: .8rem; color: var(--text-muted); display: block; margin-bottom: 1.5rem;
}
.price-list {
  text-align: left; margin-bottom: 1.75rem;
  list-style: none; padding: 0;
}
.price-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .88rem; color: var(--text); margin-bottom: .55rem;
  padding: .3rem 0;
  border-bottom: 1px solid rgba(212,175,55,.08);
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: '\2714';
  color: var(--purple-mid); font-weight: 800;
  font-size: .9rem; flex-shrink: 0; margin-top: .05rem;
}
.price-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   TECNICAS ADIVINATORIAS
   ============================================================ */
.tecnicas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.tecnica-card {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55, .15);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: var(--transition);
  box-shadow: 0 3px 18px rgba(0,0,0,.40);
  flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
}
.tecnica-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,175,55,.35);
  box-shadow: var(--shadow-mystic);
}
.tecnica-icon {
  font-size: 2rem; flex-shrink: 0; line-height: 1;
  text-shadow: 0 0 12px rgba(212,175,55,.40);
}
.tecnica-body h3 {
  font-family: var(--font-title);
  color: var(--purple-mid); font-size: 1rem; margin-bottom: .35rem;
}
.tecnica-body p { color: var(--text-muted); font-size: .86rem; margin-bottom: .5rem; line-height: 1.6; }
.tecnica-tag {
  display: inline-block;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.22);
  color: var(--text-muted); font-size: .72rem;
  padding: .2rem .65rem; border-radius: 20px;
  font-weight: 600;
}

/* ============================================================
   UTILIDADES ADICIONALES
   ============================================================ */
.section-nota {
  background: rgba(212,175,55,.06);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 10px; padding: .9rem 1.25rem;
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .88rem; color: var(--text);
  margin-top: 1rem;
}
.section-nota i { color: var(--purple-mid); font-size: 1rem; flex-shrink: 0; }

/* ============================================================
   SERVICE BANNER CARDS
   ============================================================ */

/* Gradientes unicos por servicio */
.svc-amor .svc-visual,    .svc-amor .svc-hvisual    { background: linear-gradient(145deg, #5c0075 0%, #b84dcc 40%, #ff9ecd 100%); }
.svc-tarot .svc-visual,   .svc-tarot .svc-hvisual   { background: linear-gradient(145deg, #0a0018 0%, #38008c 52%, #b8780a 100%); }
.svc-limpia .svc-visual,  .svc-limpia .svc-hvisual  { background: linear-gradient(145deg, #14006a 0%, #6e22d4 55%, #c8b8f8 100%); }
.svc-abund .svc-visual,   .svc-abund .svc-hvisual   { background: linear-gradient(145deg, #180a00 0%, #7a5000 48%, #e8b840 100%); }
.svc-vident .svc-visual,  .svc-vident .svc-hvisual  { background: linear-gradient(145deg, #020010 0%, #220070 46%, #8c28f0 100%); }
.svc-retorno .svc-visual, .svc-retorno .svc-hvisual { background: linear-gradient(145deg, #280000 0%, #640058 48%, #f06096 100%); }
.svc-lazos .svc-visual,   .svc-lazos .svc-hvisual   { background: linear-gradient(145deg, #000014 0%, #140052 40%, #5000e8 100%); }
.svc-sanac .svc-visual,   .svc-sanac .svc-hvisual   { background: linear-gradient(145deg, #000e1a 0%, #004870 40%, #00a8cc 100%); }
.svc-magia .svc-visual,   .svc-magia .svc-hvisual   { background: linear-gradient(145deg, #1e0038 0%, #7210cc 48%, #e8b020 100%); }
.svc-aura .svc-visual,    .svc-aura .svc-hvisual    { background: linear-gradient(145deg, #1e0030 0%, #8828e0 48%, #f0c4f8 100%); }

/* -- HOME - TARJETAS BANNER VERTICALES -- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.svc-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,.18);
  box-shadow: 0 6px 32px rgba(0,0,0,.50), 0 1px 6px rgba(212,175,55,.08);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0,0,0,.65), 0 4px 20px rgba(212,175,55,.18);
}
.svc-card.svc-banner {
  background: transparent;
  border: none;
  padding: 0;
  align-self: start;
}
.svc-banner-link {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
  overflow: hidden;
  border-radius: 20px;
}
.svc-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform .4s ease, box-shadow .4s ease;
}
.svc-card.svc-banner:hover .svc-banner-img {
  transform: scale(1.03);
  box-shadow: 0 20px 56px rgba(0,0,0,.55);
}

/* Boton CTA bajo cada banner */
.svc-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  margin-top: .6rem;
  padding: .75rem 1rem;
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
  font-family: var(--font-title);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  animation: pulse-wa 2.4s ease-in-out infinite;
}
.svc-cta-btn i { font-size: 1.15rem; }
.svc-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.50);
  filter: brightness(1.08);
  animation: none;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,.35); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,.65); }
}

@media (min-width: 769px) {
  .svc-cta-btn { font-size: .92rem; padding: .75rem 1rem; border-radius: 10px; }
}
.svc-visual {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-visual::before, .svc-hvisual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='200'%3E%3Ccircle cx='30' cy='22' r='1.2' fill='rgba(255,255,255,.65)'/%3E%3Ccircle cx='100' cy='15' r='.8' fill='rgba(255,255,255,.5)'/%3E%3Ccircle cx='185' cy='30' r='1.5' fill='rgba(255,255,255,.6)'/%3E%3Ccircle cx='260' cy='18' r='1' fill='rgba(255,255,255,.5)'/%3E%3Ccircle cx='55' cy='85' r='1.1' fill='rgba(255,255,255,.55)'/%3E%3Ccircle cx='145' cy='75' r='1.3' fill='rgba(255,255,255,.5)'/%3E%3Ccircle cx='225' cy='95' r='.9' fill='rgba(255,255,255,.45)'/%3E%3Ccircle cx='280' cy='65' r='1.4' fill='rgba(255,255,255,.6)'/%3E%3Ccircle cx='15' cy='145' r='1' fill='rgba(255,255,255,.5)'/%3E%3Ccircle cx='90' cy='160' r='1.2' fill='rgba(255,255,255,.55)'/%3E%3Ccircle cx='175' cy='150' r='.8' fill='rgba(255,255,255,.45)'/%3E%3Ccircle cx='240' cy='165' r='1.3' fill='rgba(255,255,255,.6)'/%3E%3Ccircle cx='65' cy='48' r='.8' fill='rgba(255,235,150,.75)'/%3E%3Ccircle cx='160' cy='40' r='1' fill='rgba(255,235,150,.65)'/%3E%3Ccircle cx='210' cy='130' r='1.2' fill='rgba(255,235,150,.6)'/%3E%3Ccircle cx='120' cy='185' r='.9' fill='rgba(255,235,150,.5)'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .9;
}
.svc-symbol {
  font-size: 4.5rem;
  position: relative; z-index: 2;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.45));
  animation: float 5s ease-in-out infinite;
}
.svc-visual-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: .55rem 1.25rem .75rem;
  background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.30) 65%, transparent 100%);
  z-index: 3;
}
.svc-cat {
  display: block;
  font-size: .62rem;
  color: rgba(255,240,180,.95);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: .15rem;
}
.svc-visual-label h3 {
  font-family: var(--font-title);
  color: #fff;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.svc-content {
  padding: 1.4rem 1.6rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.svc-desc {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.7;
  flex: 1;
  margin: 0;
}
.svc-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.svc-tag {
  display: inline-block;
  padding: .2rem .65rem;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 20px;
  font-size: .68rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .3px;
}
.svc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(212,175,55,.10);
}
.svc-price-hint { font-size: .78rem; color: var(--text-muted); }

/* -- SERVICIOS - BANNERS HORIZONTALES ALTERNADOS -- */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.svc-hcard {
  display: grid;
  grid-template-columns: 290px 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(212,175,55,.15);
  box-shadow: 0 6px 32px rgba(0,0,0,.50), 0 1px 6px rgba(212,175,55,.08);
  transition: transform .35s ease, box-shadow .35s ease;
}
.svc-hcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,0,0,.65), 0 4px 18px rgba(212,175,55,.18);
}
.svc-hcard:nth-child(even) { grid-template-columns: 1fr 290px; }
.svc-hcard:nth-child(even) .svc-hvisual { order: 2; }
.svc-hcard:nth-child(even) .svc-hbody   { order: 1; }

.svc-hvisual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem 1.5rem;
  overflow: hidden;
  min-height: 260px;
}
.svc-hsymbol {
  font-size: 5rem;
  position: relative; z-index: 2;
  filter: drop-shadow(0 4px 28px rgba(0,0,0,.5));
  animation: float 5s ease-in-out infinite;
}
.svc-hquote {
  position: relative; z-index: 2;
  text-align: center;
  color: rgba(255,255,255,.82);
  font-style: italic;
  font-size: .80rem;
  line-height: 1.55;
  max-width: 200px;
  font-family: var(--font-title);
  letter-spacing: .3px;
}
.svc-hnum {
  position: absolute;
  bottom: .8rem; right: 1rem;
  font-family: var(--font-title);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(255,255,255,.08);
  line-height: 1;
  z-index: 1;
  user-select: none;
}
.svc-hbody {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .9rem;
}
.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .26rem .85rem;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.20);
  border-radius: 20px;
  font-size: .68rem;
  color: var(--purple-mid);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: fit-content;
}
.svc-hbody h3 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--purple-mid);
  line-height: 1.2;
}
.svc-hdesc {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.75;
  margin: 0;
}
.svc-includes {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem .75rem;
  margin: 0;
}
.svc-includes li {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .83rem;
  color: var(--text);
}
.svc-includes li i {
  color: var(--purple-mid);
  font-size: .72rem;
  flex-shrink: 0;
}
.svc-hfooter {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(212,175,55,.10);
  flex-wrap: wrap;
}
.svc-hprice { font-size: .82rem; color: var(--text-muted); font-style: italic; }

/* -- Responsive service banners -- */
@media (min-width: 581px) {
  .svc-banner-link { height: auto; aspect-ratio: 3 / 4; }
}
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-hcard             { grid-template-columns: 240px 1fr; }
  .svc-hcard:nth-child(even) { grid-template-columns: 1fr 240px; }
  .tecnica-card { flex: 0 0 calc((100% - 1.25rem) / 2); }
}
@media (max-width: 768px) {
  .svc-hcard,
  .svc-hcard:nth-child(even) { grid-template-columns: 1fr; }
  .svc-hcard .svc-hvisual,
  .svc-hcard:nth-child(even) .svc-hvisual {
    order: 0 !important;
    min-height: 240px;
    background-position: center center !important;
  }
  .svc-hcard .svc-hbody,
  .svc-hcard:nth-child(even) .svc-hbody { order: 1 !important; padding: 1.5rem 1.25rem; }
  .svc-includes { grid-template-columns: 1fr; }
  .svc-hbody h3 { font-size: 1.3rem; }
  .hero .btn-outline { border-color: rgba(255,255,255,.78); color: #fff; }
  .hero .btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
  .scroll-hint { bottom: 5rem; }
  .cta-section { padding: 3.5rem 0; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
}
@media (max-width: 580px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-hcard .svc-hvisual,
  .svc-hcard:nth-child(even) .svc-hvisual { min-height: 220px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns  { flex-direction: column; align-items: center; }
  .hero .hero-sub  { font-size: 1rem; margin-bottom: 2rem; }
  .hero-badge      { font-size: .68rem; letter-spacing: 2px; padding: .35rem 1rem; }
  .hero-symbol     { font-size: 3rem;  margin-bottom: 1rem; }
  .trust-item .stat { font-size: 2.2rem; }
  .fab { width: 48px; height: 48px; font-size: 1.2rem; }
  .fab-tip { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .tecnica-card { flex: 0 0 100%; }
  .svc-hcard .svc-hbody,
  .svc-hcard:nth-child(even) .svc-hbody { padding: 1.25rem 1rem; }
  .svc-hbody h3  { font-size: 1.2rem; }
  .svc-hdesc     { font-size: .87rem; }
  .svc-hfooter   { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .svc-hfooter .btn { width: 100%; justify-content: center; }
  .section-nota  { display: flex; flex-wrap: wrap; font-size: .82rem; }
}

/* ============================================================
   MOBILE-FIRST
   ============================================================ */
.svc-hvisual[style*="background-image"]::before { opacity: 0.22; }
.svc-hvisual[style*="background-image"] { background-blend-mode: normal; }
.svc-hvisual[style*="background-image"]::after {
  background: linear-gradient(to bottom, rgba(0,0,0,.04) 0%, rgba(0,0,0,.28) 100%);
  transform: none;
  z-index: 1;
}
.svc-hcard:hover .svc-hvisual[style*="background-image"]::after {
  background:
    linear-gradient(to bottom, rgba(0,0,0,.04) 0%, rgba(0,0,0,.28) 100%),
    linear-gradient(110deg, transparent 28%, rgba(255,255,255,.13) 50%, transparent 72%);
  transform: translateX(100%);
}
.svc-hvisual[style*="background-image"] .svc-hnum { color: rgba(255,255,255,.13); z-index: 2; }

@media (max-width: 380px) {
  .container { padding: 0 .85rem; }
  .logo-sub { display: none; }
  .section { padding: 2.75rem 0; }
  .page-hero { padding: 105px 1rem 2.75rem; }
  .hero-symbol { font-size: 3rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .trust-item .stat { font-size: 1.9rem; }
  .trust-item .stat-label { font-size: .72rem; letter-spacing: .5px; }
  .svc-hcard .svc-hvisual,
  .svc-hcard:nth-child(even) .svc-hvisual { min-height: 195px; }
  .svc-hbody h3  { font-size: 1.1rem; }
  .svc-badge { font-size: .62rem; padding: .2rem .65rem; }
  .fab-group.fab-left  { left: .65rem; bottom: 1.1rem; }
  .fab-group.fab-right { right: .65rem; bottom: 1.1rem; }
  .fab { width: 44px; height: 44px; font-size: 1.05rem; }
  .price-amount { font-size: 2.2rem; }
  .pricing-grid { gap: 1rem; }
  .cta-section { padding: 3.5rem 0; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .footer-col h5 { font-size: .78rem; }
  .footer-col ul li a { font-size: .82rem; }
  .faq-question { font-size: .92rem; }
}

[id] { scroll-margin-top: 80px; }

/* ============================================================
   BARRA DE LLAMADA FIJA INFERIOR (sticky call bar - movil)
   ============================================================ */
.sticky-call-bar { display: none; }

@media (max-width: 768px) {
  .sticky-call-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1002;
    background: #16a34a;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: .95rem 1rem;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-title);
    box-shadow: 0 -4px 22px rgba(0,0,0,.35);
    transition: background .2s;
  }
  .sticky-call-bar i { font-size: 1.3rem; }
  .sticky-call-bar:hover,
  .sticky-call-bar:active { background: #15803d; color: #fff; }
  .fab-group.fab-left,
  .fab-group.fab-right { bottom: 4.5rem; }
  #site-footer { padding-bottom: 4.5rem; }
}

@media (max-width: 380px) {
  .fab-group.fab-left,
  .fab-group.fab-right { bottom: 4.2rem; }
  #site-footer { padding-bottom: 4.2rem; }
}

/* Tawk.to: posicion y tamano */
#tawkchat-minified-box,
.tawk-min-container {
  bottom: 88px  !important;
  left:   24px  !important;
  right:  auto  !important;
  width:  54px  !important;
  height: 54px  !important;
}
@media (max-width: 768px) {
  #tawkchat-minified-box,
  .tawk-min-container {
    bottom: 126px !important;
    left:   10px  !important;
    right:  auto  !important;
    width:  44px  !important;
    height: 44px  !important;
  }
}