/* ══════════════════════════════════════
       TOKENS — Paleta Negro profundo + Dorado
    ══════════════════════════════════════ */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #181818;
  --dark3: #1e1e1e;
  --dark4: #242424;
  --gold: #c9a84c;
  --gold-light: #e4c97e;
  --gold-dim: #8a6f2e;
  --gold-pale: rgba(201, 168, 76, 0.08);
  --gold-border: rgba(201, 168, 76, 0.18);
  --white: #ffffff;
  --offwhite: #e8e0d0;
  --gray: #888888;
  --gray-light: #aaaaaa;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--black);
  color: var(--offwhite);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.002em;
}
h1,
h2,
h3,
h4,
.section-title,
.hero-title,
.caso-title,
.sit-name,
.logo-name,
.footer-brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ── TOPBAR ── */
.topbar {
  background: #050505;
  border-bottom: 1px solid var(--gold-border);
  color: var(--gray);
  font-size: 0.75rem;
  padding: 0.4rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.topbar a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.topbar a:hover {
  color: var(--gold);
}
.tb-left {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  flex-wrap: wrap;
}
.tb-right {
  display: flex;
  gap: 1.2rem;
}

/* ── URGENCIA ── */
.urgencia-banner {
  background: linear-gradient(90deg, #1a1200 0%, #2a1e00 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--offwhite);
  padding: 0.65rem 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
  text-align: center;
}
.urgencia-banner strong {
  color: var(--gold-light);
  font-weight: 700;
}
.urgencia-banner a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}
.urgencia-banner a:hover {
  color: var(--gold-light);
}

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
  padding: 0.9rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg {
  width: 26px;
  height: 26px;
}
.logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 1px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}
.nav-menu {
  display: flex;
  gap: 0.15rem;
  list-style: none;
}
.nav-menu a {
  color: var(--offwhite);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  letter-spacing: 0.08em;
  transition:
    color 0.2s,
    background 0.2s;
  font-family: "Cormorant Garamond", serif;
}
.nav-menu a:hover {
  color: var(--gold);
  background: var(--gold-pale);
}
.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.2s,
    transform 0.15s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Cormorant Garamond", serif;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: block;
  border-radius: 2px;
}

/* ── MOBILE MENU ── */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mob-menu.open {
  display: flex;
}
.mob-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.mob-menu a:hover {
  color: var(--gold);
}
.mob-close {
  position: absolute;
  top: 1.5rem;
  right: 5vw;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gold);
}

/* ══════════════════════════════════════ HERO */
#hero {
  min-height: auto;
  display: flex;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 4rem 5vw 5rem;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(201, 168, 76, 0.04) 1px,
    transparent 0
  );
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 2;
  max-width: 1200px; /* ← antes era 1100px */
  margin: 0 auto;
  text-align: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  width: fit-content;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 1.6rem;
  animation: fadeUp 0.6s 0.08s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-intro {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.16s ease both;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero-intro strong {
  color: var(--offwhite);
  font-weight: 500;
}
.hero-problems {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.8rem;
  animation: fadeUp 0.6s 0.22s ease both;
}
.prob {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--gold);
  border-radius: 0 6px 6px 0;
}
.prob-icon {
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.28s ease both;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
}
.btn-ghost {
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-2px);
}
/* hero-right removed */

/* ══════════════════════════════════════ SHARED */
.section-chip {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--gold-border);
  margin-bottom: 1rem;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 0.8rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title.light {
  color: var(--white);
}
.section-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.82;
}
.gold-rule {
  width: 46px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.4rem;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: none;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hc-cred {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hc-cred:last-child {
  border-right: none;
}
.hc-cred-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hc-cred-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
/* ══════════════════════════════════════ SITUACIONES */
#situaciones {
  background: var(--dark);
  padding: 2rem 4vw;
}
.sit-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.sit-header .gold-rule {
  margin: 1rem auto 0;
}
.sit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
}
.sit-card {
  background: var(--dark2);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.sit-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.sit-card.featured {
  background: linear-gradient(
    160deg,
    rgba(201, 168, 76, 0.06) 0%,
    var(--dark2) 100%
  );
}
.sit-card.featured::after {
  transform: scaleX(1);
}
.sit-card:hover {
  background: var(--dark3);
}
.sit-card:hover::after {
  transform: scaleX(1);
}
.sit-emoji {
  font-size: 2rem;
  margin-bottom: 0.9rem;
  display: block;
}
.sit-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.sit-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
.sit-desc {
  font-size: 0.84rem;
  color: var(--gray-light);
  line-height: 1.72;
}
.sit-list {
  list-style: none;
  margin-top: 1rem;
}
.sit-list li {
  font-size: 0.81rem;
  color: var(--offwhite);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.sit-list li::before {
  content: "›";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.sit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.3rem;
  transition: gap 0.2s;
}
.sit-link:hover {
  gap: 0.8rem;
}

/* ══════════════════════════════════════ CASOS DESTACADOS */
#casos {
  background: var(--black);
  padding: 2rem 4vw;
}
.casos-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.casos-header .gold-rule {
  margin: 1rem auto 0;
}
.casos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.casos-grid-row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 66.66%;
}
.caso-card {
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.caso-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.caso-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.4);
}
.caso-area {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.caso-area::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.caso-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.caso-desc {
  font-size: 0.84rem;
  color: var(--gray-light);
  line-height: 1.75;
  flex: 1;
}
.caso-result {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gold-border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.caso-monto {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.caso-monto-label {
  font-size: 0.68rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.caso-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-top: 0.5rem;
  width: fit-content;
  letter-spacing: 0.05em;
}
.caso-badge::before {
  content: "✓";
  font-weight: 700;
}
.casos-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.76rem;
  color: var(--gray);
  font-style: italic;
  opacity: 0.7;
}

/* ══════════════════════════════════════ POR QUÉ YO */
#porque {
  background: var(--dark);
  padding: 2rem 4vw;
}
.porque-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.porque-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.pfeature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  transition: background 0.2s;
}
.pfeature:hover {
  background: var(--dark3);
}
.pf-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.pf-title {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.pf-desc {
  font-size: 0.81rem;
  color: var(--gray);
  line-height: 1.65;
}
.pq-bg {
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
}
.pq-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 6px 6px 0 0;
}
.pq-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: -1rem;
  left: 2rem;
}
.pq-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.pq-author {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pq-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.pq-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.88rem;
}
.pq-role {
  font-size: 0.73rem;
  color: var(--gray);
}
.pq-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gold-border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 1.5rem;
}
.pqs {
  background: var(--dark3);
  padding: 1.2rem;
  text-align: center;
}
.pqs-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
}
.pqs-label {
  font-size: 0.7rem;
  color: var(--gray);
  margin-top: 0.2rem;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════ PROCESO */
#proceso {
  background: var(--dark2);
  padding: 2rem 4vw;
}
.proceso-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}
.proceso-header .gold-rule {
  margin: 1rem auto 0;
}
.proceso-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.proceso-line {
  position: absolute;
  top: 2.8rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0,
    var(--gold) 6px,
    transparent 6px,
    transparent 14px
  );
  opacity: 0.35;
}
.ps-card {
  background: var(--dark3);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: border-color 0.2s;
}
.ps-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
}
.ps-num {
  width: 3.2rem;
  height: 3.2rem;
  background: var(--dark);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
}
.ps-card.accent .ps-num {
  background: var(--gold);
  color: var(--black);
}
.ps-title {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.ps-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ══════════════════════════════════════ FAQ */
#faq {
  background: var(--dark);
  padding: 2rem 4vw;
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.faq-header {
  position: sticky;
  top: 7rem;
}
.faq-header .gold-rule {
  margin-bottom: 1.5rem;
}
.faq-header p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.faq-cta-box {
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 1.5rem;
}
.faq-cta-box p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.72rem 1.4rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-gold-sm:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.faqs {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq-item {
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.4);
}
details[open].faq-item {
  border-color: rgba(201, 168, 76, 0.4);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--offwhite);
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color 0.2s;
  list-style: none;
  user-select: none;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-q::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.25s;
}
details[open] .faq-q::after {
  transform: rotate(45deg);
}
details[open] .faq-q {
  color: var(--gold);
}
.faq-a {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.86rem;
  color: var(--gray-light);
  line-height: 1.78;
}
.faq-a strong {
  color: var(--white);
  font-weight: 600;
}
.faq-a .fallo-ref {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
  border: 1px solid var(--gold-border);
  margin-left: 0.4rem;
}

/* ══════════════════════════════════════ CONTACTO */
#contacto {
  background: var(--dark2);
  padding: 2rem 4vw;
}
.contacto-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3.5rem;
}
.contacto-header .gold-rule {
  margin: 1rem auto 0;
}
.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.ci-lead {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.ci-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.ci-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--dark3);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 1.1rem 1.3rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
}
.ci-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  background: var(--dark4);
  transform: translateY(-1px);
}
.ci-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.ci-lbl {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.ci-val {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}
.ci-sub {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 0.1rem;
}
.wsp-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: #22c55e;
  color: white;
  padding: 1.1rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 1.3rem;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.25);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}
.wsp-main:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.4);
}
.wsp-main svg {
  width: 22px;
  height: 22px;
  fill: white;
}
.cf-box {
  background: var(--dark3);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 2.5rem 2.2rem;
  position: relative;
}
.cf-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 6px 6px 0 0;
}
.cf-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.cf-sub {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cf-group {
  margin-bottom: 1.1rem;
}
.cf-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.45rem;
}
.cf-input,
.cf-select,
.cf-ta {
  width: 100%;
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  color: var(--white);
  padding: 0.82rem 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.88rem;
  border-radius: 6px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.cf-input::placeholder,
.cf-ta::placeholder {
  color: var(--gray);
}
.cf-input:focus,
.cf-select:focus,
.cf-ta:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.cf-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.cf-select option {
  background: var(--dark2);
}
.cf-ta {
  resize: vertical;
  min-height: 110px;
}
.cf-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.cf-check input {
  width: auto;
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.cf-check label {
  font-size: 0.76rem;
  color: var(--gray);
  line-height: 1.5;
}
.cf-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1.05rem;
  border-radius: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.2s,
    transform 0.15s;
}
.cf-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.cf-note {
  text-align: center;
  font-size: 0.71rem;
  color: var(--gray);
  margin-top: 0.8rem;
}

/* ══════════════════════════════════════ FOOTER */
footer {
  background: #050505;
  border-top: 1px solid var(--gold-border);
  padding: 2rem 4vw 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.footer-brand-sub {
  font-size: 0.68rem;
  color: var(--gray);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.81rem;
  line-height: 1.8;
  color: var(--gray);
  margin-top: 1rem;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.fsoc {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--dark2);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.fsoc:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.6rem;
}
.footer-col a {
  font-size: 0.81rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.74rem;
  color: var(--gray);
}
.footer-mat {
  color: var(--gold-dim);
}

/* ══════════════════════════════════════ WA FLOAT */
.wafloat {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #22c55e;
  color: white;
  border-radius: 50px;
  padding: 0.85rem 1.4rem 0.85rem 1rem;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
  animation: pulse-wa 2.5s infinite;
}
.wafloat svg {
  width: 26px;
  height: 26px;
  fill: white;
  flex-shrink: 0;
}
.wafloat:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.55);
  animation: none;
}
@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 4px 32px rgba(34, 197, 94, 0.65);
  }
}

/* ══════════════════════════════════════ RESPONSIVE */
@media (max-width: 1100px) {
  .sit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .casos-grid {
    grid-template-columns: 1fr 1fr;
  }
  .casos-grid-row2 {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 900px) {
  #hero {
    min-height: auto;
    padding: 5rem 5vw 4rem;
  }
  .porque-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .proceso-steps {
    grid-template-columns: 1fr 1fr;
  }
  .proceso-line {
    display: none;
  }
  .faq-inner {
    grid-template-columns: 1fr;
  }
  .faq-header {
    position: static;
  }
  .contacto-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  nav .nav-menu,
  nav .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .sit-grid {
    grid-template-columns: 1fr;
  }
  .casos-grid {
    grid-template-columns: 1fr;
  }
  .casos-grid-row2 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .proceso-steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
  .topbar,
  .urgencia-banner {
    font-size: 0.72rem;
  }
  .wafloat .wa-text {
    display: none;
  }
  .wafloat {
    border-radius: 50%;
    padding: 1rem;
  }
}

/* ══════════════════════════════════════ TESTIMONIOS */
#testimonios {
  background: var(--dark2);
  padding: 2rem 4vw;
}
.test-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.test-header .gold-rule {
  margin: 1rem auto 0;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.test-card {
  background: var(--dark3);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 2.2rem 2rem 1.6rem;
  position: relative;
  transition:
    border-color 0.25s,
    transform 0.2s;
}
.test-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-3px);
}
.test-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 6px 6px 0 0;
}
.test-mark {
  font-family: "Playfair Display", serif;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.4rem;
  left: 1.5rem;
}
.test-text {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  font-style: italic;
  margin-top: 1.4rem;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gold-border);
}
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.test-meta-name {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.test-meta-loc {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 0.18rem;
}

/* Botón flotante WhatsApp — verde oficial */
.wafloat {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #25d366; /* Verde WhatsApp oficial */
  color: #ffffff;
  padding: 0.85rem 1.4rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  z-index: 999;
}
.wafloat:hover {
  background: #128c7e; /* Verde WhatsApp oscuro al hover */
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.wafloat svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.wafloat .wa-text {
  white-space: nowrap;
}

/* Pulso sutil para llamar la atención */
.wafloat::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 2px solid #25d366;
  opacity: 0;
  pointer-events: none;
  animation: wapulse 2.5s ease-out infinite;
}
@keyframes wapulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
}
.fsoc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--gold-pale);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}
.fsoc svg {
  width: 17px;
  height: 17px;
}
.fsoc:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
/* WhatsApp — color de marca al hover */
.fsoc-wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.ci-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.fl-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: -2px;
  margin-right: 0.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.footer-col li a {
  display: inline-flex;
  align-items: center;
}

.btn-ghost {
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 400;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
}

/* ══════════════════════════════════════ HERO MOBILE FIX */
@media (max-width: 640px) {
  #hero {
    padding: 3rem 5vw 3.5rem;
  }
  .hero-pill {
    font-size: 0.62rem;
    padding: 0.3rem 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.4rem;
  }
  .hero-title {
    font-size: 2.1rem !important;
    line-height: 1.14;
    margin-bottom: 1.2rem;
  }
  .hero-intro {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding: 0 0.3rem;
  }
  .hero-credentials {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem 0;
    margin-top: 2.5rem;
    padding-top: 2rem;
    max-width: 360px;
  }
  .hc-cred {
    padding: 0 0.5rem;
  }
  .hc-cred:nth-child(2n) {
    border-right: none;
  }
  .hc-cred-num {
    font-size: 1.65rem;
  }
  .hc-cred-lbl {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    line-height: 1.3;
  }
}

/* Mobile chico extra (iPhone SE, Galaxy A03, etc.) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.85rem !important;
  }
  .hero-pill {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }
  .hc-cred-num {
    font-size: 1.45rem;
  }
}
