/*
  =========================================
  RED ALIANZA S.R.L. - SISTEMA DE DISEÑO DORADO / CHAMPAGNE (Diseño 7)
  Clon del Premium recoloreado a un tema dorado de lujo, opulento.
  =========================================
*/

:root {
  /* Paleta NAVY + DORADO — del formulario flotante (modal) del diseño premium */
  --bg-deep: hsl(215, 56%, 7%);      /* #08111f - Navy profundo, fondo base */
  --bg-surface: hsl(214, 52%, 13%);  /* #102036 - Navy de tarjetas y paneles */
  --bg-surface-hover: hsl(214, 46%, 17%); /* Navy interactivo en hover */
  --bg-glass: rgba(8, 17, 31, 0.66); /* Navy para glassmorphism */

  --gold-primary: hsl(43, 60%, 53%); /* #cda63c - Dorado rico principal */
  --gold-light: hsl(43, 70%, 73%);   /* #e7cd86 - Dorado claro de acento */
  --gold-deep: hsl(38, 58%, 43%);    /* #b3852e - Dorado oscuro/sombra */

  --text-main: hsl(210, 32%, 95%);   /* #f0f4f8 - Texto primario marfil frío */
  --text-secondary: hsl(212, 20%, 75%); /* #b3bdc9 - Texto secundario */
  --text-muted: hsl(212, 15%, 56%);   /* #818c99 - Texto aclaratorio (contraste ≥4.5:1) */

  /* Bordes, Líneas y Luces */
  --line-light: rgba(205, 166, 60, 0.11); /* Hairline sutil dorada */
  --line-strong: rgba(205, 166, 60, 0.24); /* Borde dorado marcado en hover */
  --gold-glow: rgba(205, 166, 60, 0.18);  /* Resplandor dorado */
  
  /* Layout y Dimensiones */
  --max-width: 1200px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition-smooth: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  --transition-fast: 0.2s ease;
}

/* Reset de Estilos */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  color: var(--text-secondary);
  background-color: var(--bg-deep);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Grano y Resplandor de Fondo */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  mix-blend-mode: screen;
}

#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 100;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-primary), var(--gold-light));
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* Tipografías y Títulos */
h1, h2, h3, h4, .serif-font {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

em {
  font-style: normal;
  color: var(--gold-primary);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Clases de Utilidad y Contenedores */
.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

section {
  padding: 120px 0;
  position: relative;
  border-bottom: 1px solid var(--line-light);
}

.center {
  text-align: center;
}

/* Eyebrows (Etiquetas superiores) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold-primary);
  margin-bottom: 24px;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background-color: var(--gold-primary);
  opacity: 0.5;
}

.eyebrow.c::after {
  content: "";
  width: 24px;
  height: 1px;
  background-color: var(--gold-primary);
  opacity: 0.5;
}

.section-t {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 24px;
}

.lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 48px;
}

.center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* Botones Premium */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: #1a1408;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
  font-weight: 600;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  border: 1px solid var(--line-light);
}

.btn-ghost:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.04);
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* --- HEADER --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background-color: transparent;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand .mono {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 18px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
}

.brand .bt {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--text-main);
  line-height: 1.1;
}

.brand .bt small {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-top: 3px;
}

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

.nav-links a.lnk {
  font-size: 14px;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-links a.lnk::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--gold-primary);
  transition: var(--transition-fast);
}

.nav-links a.lnk:hover {
  color: var(--text-main);
}

.nav-links a.lnk:hover::after {
  width: 100%;
}

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 24px;
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
}

.hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid var(--line-light);
  border-radius: 50px;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

.hero h1 {
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero p.sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  gap: 36px;
  border-top: 1px solid var(--line-light);
  padding-top: 32px;
  flex-wrap: wrap;
}

.hero-meta div {
  flex: 1;
  min-width: 120px;
}

.hero-meta div b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 36px;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.hero-meta div span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

/* Tarjeta del Formulario */
.form-card {
  background: linear-gradient(145deg, var(--bg-surface) 0%, rgba(33, 26, 16, 0.8) 100%);
  border: 1px solid var(--line-light);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.form-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.form-card .muted {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.field input, .field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--line-light);
  color: var(--text-main);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 14.5px;
  transition: var(--transition-fast);
}

.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
  background: rgba(0, 0, 0, 0.3);
}

.input-prefix {
  display: flex;
  align-items: stretch;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.input-prefix:focus-within {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
  background: rgba(0, 0, 0, 0.3);
}

.input-prefix .pfx {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  font-size: 14.5px;
  color: var(--gold-light);
  border-right: 1px solid var(--line-light);
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.1);
}

.input-prefix input {
  border: none !important;
  background: transparent !important;
  border-radius: 0;
  flex: 1;
  min-width: 0;
  box-shadow: none !important;
}

.field select option {
  background-color: var(--bg-surface);
  color: var(--text-main);
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-secure {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 20px;
}

.form-secure svg {
  color: var(--gold-primary);
}

.form-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.5;
}

/* --- MARQUEE STRIP --- */
.marquee {
  background: var(--bg-surface);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
  padding: 24px 0;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
  gap: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.marquee-track span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  color: var(--text-main);
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
}

.marquee-track span::after {
  content: "✦";
  color: var(--gold-primary);
  font-size: 12px;
}

/* --- BENTO SERVICES GRID --- */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.sec-idx {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14px;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.svc {
  padding: 44px 38px;
  background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(33, 26, 16, 0.4) 100%);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.svc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold-primary), transparent, transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.svc:hover {
  border-color: var(--line-strong);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.svc:hover::after {
  opacity: 0.6;
}

.svc .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.svc .ic {
  color: var(--gold-primary);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.05);
  display: grid;
  place-items: center;
}

.svc .n {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 15px;
  color: var(--text-muted);
}

.svc h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.2;
}

.svc p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.svc.lg {
  grid-column: span 3;
}

.svc.md {
  grid-column: span 3;
}

.svc.sm {
  grid-column: span 2;
}

.svc.feature {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, var(--bg-surface) 60%);
  border-color: var(--line-strong);
}

.svc.feature h3 {
  font-size: 28px;
}

/* --- PROCESS TIMELINE --- */
.process {
  background-color: var(--bg-surface);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 12%;
  right: 12%;
  height: 1px;
  background-color: var(--line-light);
  z-index: 1;
}

.step {
  padding: 0 16px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step .node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background-color: var(--bg-deep);
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  color: var(--gold-light);
  transition: var(--transition-smooth);
}

.step:hover .node {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: #1a1408;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.step h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* --- SEC: NOSOTROS & INFO --- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.check {
  list-style: none;
  margin-top: 36px;
}

.check li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-main);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
}

.check li:last-child {
  border-bottom: none;
}

.check .tick {
  flex: none;
  color: var(--gold-primary);
  margin-top: 2px;
}

.panel-c {
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(33, 26, 16, 0.3) 100%);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.panel-c::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.panel-c h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.panel-c .sm {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.panel-c .data {
  display: flex;
  flex-direction: column;
}

.panel-c .data div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 14.5px;
}

.panel-c .data div:last-child {
  border-bottom: none;
}

.panel-c .data span {
  color: var(--text-secondary);
}

.panel-c .data b {
  color: var(--text-main);
  font-weight: 500;
  text-align: right;
}

/* --- CITA Y BANNER --- */
.band {
  background-color: var(--bg-surface);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.05) 0%, transparent 75%);
  pointer-events: none;
}

.band .quote-mark {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 120px;
  color: rgba(212, 175, 55, 0.15);
  line-height: 0.1;
  height: 44px;
  margin-bottom: 24px;
}

.band h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.3;
  max-width: 880px;
  margin: 0 auto 40px;
}

/* --- FAQ ACCORDION --- */
.faq {
  max-width: 800px;
  margin: 56px auto 0;
}

details {
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  background: var(--bg-surface);
  overflow: hidden;
  transition: var(--transition-smooth);
}

details[open] {
  border-color: var(--line-strong);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

summary {
  cursor: pointer;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  color: var(--text-main);
  padding: 24px 30px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex: none;
}

details[open] summary::after {
  transform: rotate(-135deg);
}

details p {
  padding: 0 30px 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* --- CONTACT GRID --- */
.contact {
  background-color: var(--bg-surface);
}

.cinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.cinfo-card {
  display: flex;
  flex-direction: column;
  padding: 38px 32px;
  background: var(--bg-deep);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.cinfo-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cinfo-card .ic {
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.cinfo-card b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 6px;
}

.cinfo-card span {
  font-size: 14.5px;
  color: var(--text-secondary);
}

/* --- FOOTER --- */
footer {
  background-color: var(--bg-deep);
  padding: 96px 0 40px;
}

.foot {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 64px;
  margin-bottom: 64px;
}

footer p.desc {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 360px;
  margin-top: 24px;
  line-height: 1.6;
}

footer h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 24px;
}

footer a {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
}

footer a:hover {
  color: var(--gold-primary);
}

.disclaimer {
  background: rgba(212, 175, 55, 0.02);
  border: 1px solid var(--line-light);
  padding: 28px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  border-radius: var(--radius-md);
  margin-bottom: 40px;
}

.legal {
  border-top: 1px solid var(--line-light);
  padding-top: 28px;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
}

.legal a {
  display: inline;
  color: var(--text-secondary);
}

.legal a:hover {
  color: var(--gold-primary);
}

/* Flotante de WhatsApp */
.wa-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: #1a1408;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
  transition: var(--transition-smooth);
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Animaciones Reveal */
.reveal {
  opacity: 1;
  transform: none;
}

.js-anim .reveal {
  transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-anim .reveal:not(.in) {
  opacity: 0;
  transform: translateY(24px);
}

/* --- RESPONSIVIDAD (MEDIA QUERIES) --- */

@media (max-width: 1024px) {
  section {
    padding: 100px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero {
    padding-top: 120px;
    text-align: center;
  }
  .hero-meta, .hero-tag {
    justify-content: center;
  }
  .hero p.sub {
    margin-left: auto;
    margin-right: auto;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc.lg, .svc.md, .svc.sm {
    grid-column: span 1;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .steps::before {
    display: none;
  }
  .foot {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .burger {
    display: block;
  }
  .cinfo-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .foot {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 80px 0;
  }
  .bento, .steps, .row2 {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 28px 20px;
  }
  .hero-meta {
    gap: 20px;
  }
}
