/* Recaudo Legal & Abogados — Landing styles */

:root {
  --navy-950: #071526;
  --navy-900: #0f2847;
  --navy-800: #163560;
  --navy-700: #1e4578;
  --gold-500: #c9a227;
  --gold-400: #d4b04a;
  --gold-300: #e2c56e;
  --cream-50: #faf8f4;
  --cream-100: #f5f0e8;
  --cream-200: #ebe4d8;
  --charcoal: #1a1f2e;
  --charcoal-soft: #4a5568;
  --white: #ffffff;
  --shadow-sm: 0 4px 20px rgba(15, 40, 71, 0.08);
  --shadow-md: 0 12px 40px rgba(15, 40, 71, 0.12);
  --shadow-lg: 0 24px 60px rgba(15, 40, 71, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --header-h: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--gold-500);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-900);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--charcoal-soft);
  max-width: 640px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(250, 248, 244, 0.98);
  border-bottom: 1px solid transparent;
  transition: height var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  height: 68px;
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--cream-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 1;
  min-width: 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(15, 40, 71, 0.12);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--charcoal-soft);
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--navy-900);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--navy-800);
  border-color: var(--navy-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--navy-900);
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: #1ebe57;
  border-color: #1ebe57;
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}

.btn-hero-outline:hover,
.btn-hero-outline:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 21, 38, 0.92) 0%,
    rgba(15, 40, 71, 0.78) 45%,
    rgba(15, 40, 71, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-block: 80px 100px;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-400);
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-400);
  flex-shrink: 0;
}

.hero-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--gold-300);
}

.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.hero-card-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

/* Stats bar */
.stats-bar {
  background: var(--navy-900);
  padding: 44px 0;
  position: relative;
}

.stats-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 8px 16px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-item > span {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
}

/* Sections common */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin-inline: auto;
}

/* Services */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 39, 0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy-900);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--gold-500);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--navy-900);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--charcoal-soft);
  font-size: 0.9375rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold-500);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-content p {
  color: var(--charcoal-soft);
  margin-bottom: 16px;
}

.about-content p:last-of-type {
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy-900);
}

.about-feature svg {
  width: 20px;
  height: 20px;
  color: var(--gold-500);
  flex-shrink: 0;
}

/* Timeline / Trayectoria */
.timeline-section {
  background: var(--cream-100);
}

.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.timeline-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.timeline-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.timeline-image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--navy-900);
  border-radius: var(--radius-md);
  z-index: -1;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 74px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-500), var(--cream-200));
}

.timeline-item {
  display: flex;
  gap: 32px;
  padding: 20px 0;
  position: relative;
}

.timeline-year {
  flex-shrink: 0;
  width: 88px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--navy-900);
  color: var(--gold-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 100px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--cream-100);
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.9375rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

/* Cliente destacado */
.client {
  background: var(--white);
}

.client-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.client-content p {
  color: var(--charcoal-soft);
  margin-bottom: 16px;
}

.client-content p:last-of-type {
  margin-bottom: 28px;
}

.client-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-chip {
  padding: 10px 22px;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy-900);
  letter-spacing: 0.02em;
  transition: all var(--transition);
}

.brand-chip:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

.client-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.client-image img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}

.client-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 14px 22px;
  background: rgba(15, 40, 71, 0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--white);
}

.client-image-badge strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold-400);
  font-size: 1.0625rem;
}

.client-image-badge span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Cobertura */
.coverage {
  background: var(--cream-50);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.coverage-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.coverage-image img {
  width: 100%;
  aspect-ratio: 4 / 3.6;
  object-fit: cover;
}

.coverage-content > p {
  color: var(--charcoal-soft);
  margin-bottom: 24px;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy-900);
  transition: all var(--transition);
}

.coverage-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}

.coverage-list li:hover {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: var(--shadow-sm);
}

.coverage-goal {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy-900);
  padding: 16px 20px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-md);
}

.coverage-goal svg {
  width: 22px;
  height: 22px;
  color: var(--gold-500);
  flex-shrink: 0;
}

/* Datos registrales */
.registry {
  background: var(--white);
}

.registry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.registry-card {
  padding: 28px;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-top: 3px solid var(--gold-500);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.registry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.registry-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 10px;
}

.registry-card strong {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--navy-900);
  line-height: 1.4;
}

/* Process */
.process {
  background: var(--navy-900);
  color: var(--white);
}

.process .section-label {
  color: var(--gold-400);
}

.process .section-label::before {
  background: var(--gold-400);
}

.process .section-title {
  color: var(--white);
}

.process .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 162, 39, 0.3);
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-500);
  opacity: 0.6;
  margin-bottom: 16px;
  line-height: 1;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* FAQ */
.faq {
  background: var(--cream-100);
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-500);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  color: var(--navy-700);
}

.faq-answer {
  padding: 0 28px 24px;
  color: var(--charcoal-soft);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy-900);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.9375rem;
  color: var(--charcoal-soft);
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--gold-500);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
  border: 1px solid var(--cream-200);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

.contact-cta-box {
  margin-top: 32px;
  padding: 28px;
  background: var(--navy-900);
  border-radius: var(--radius-md);
  color: var(--white);
}

.contact-cta-box h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--gold-400);
}

.contact-cta-box p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-name {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--white);
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-ruc {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--gold-400);
}

.footer-login {
  display: inline-flex;
  margin-top: 20px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8125rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a:hover {
  color: var(--gold-400);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive — tablet / laptop angosto */
@media (max-width: 1100px) {
  .container {
    width: min(1200px, calc(100% - 40px));
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    z-index: 1001;
    background: var(--cream-50);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: calc(var(--header-h) + 24px) 24px calc(40px + env(safe-area-inset-bottom, 0px));
    gap: 28px;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }

  .nav-links a {
    display: block;
    font-size: 1.125rem;
    padding: 14px 4px;
    border-bottom: 1px solid var(--cream-200);
  }

  .nav-links a::after {
    display: none;
  }

  .header-cta {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 8px;
  }

  .header-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-card {
    max-width: 100%;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .stat-item + .stat-item::before {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .timeline-grid,
  .client-grid,
  .coverage-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .timeline-image {
    max-width: 520px;
    margin-inline: auto;
  }

  .timeline-image img {
    aspect-ratio: 4 / 3;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .registry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Responsive — móvil */
@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-name {
    font-size: 0.9375rem;
  }

  .logo-tagline {
    font-size: 0.65rem;
  }

  .site-header.scrolled {
    height: 60px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 36px 48px;
    gap: 28px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 7px 12px;
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
    border-radius: 12px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-card h2 {
    font-size: 1.25rem;
  }

  .stats-bar {
    padding: 32px 0;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }

  .stat-item {
    padding: 4px 8px;
  }

  .stat-item strong {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .stat-item > span {
    font-size: 0.75rem;
  }

  section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 40px;
    text-align: left;
  }

  .section-header .section-subtitle {
    margin-inline: 0;
  }

  .section-title {
    font-size: clamp(1.6rem, 6.5vw, 2.1rem);
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .service-card,
  .registry-card {
    padding: 24px;
  }

  .timeline::before {
    left: 22px;
  }

  .timeline-item {
    gap: 16px;
    padding: 16px 0;
    flex-direction: column;
  }

  .timeline-year {
    width: auto;
    min-width: 72px;
    height: 36px;
    padding-inline: 14px;
    font-size: 0.8125rem;
    box-shadow: 0 0 0 4px var(--cream-100);
    align-self: flex-start;
  }

  .timeline::before {
    display: none;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .coverage-goal {
    flex-wrap: wrap;
    font-size: 0.9375rem;
  }

  .client-image-badge {
    left: 12px;
    bottom: 12px;
    padding: 10px 14px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .registry-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
    gap: 12px;
  }

  .faq-answer {
    padding: 0 20px 18px;
  }

  .contact-cta-box {
    padding: 22px;
  }

  .contact-cta-actions {
    flex-direction: column;
  }

  .contact-cta-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom p {
    line-height: 1.55;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Responsive — móvil pequeño */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .logo-tagline {
    display: none;
  }

  .logo-name {
    font-size: 0.875rem;
    max-width: 160px;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
  }

  .brand-chip {
    padding: 8px 14px;
    font-size: 0.8125rem;
  }

  .btn {
    padding: 12px 18px;
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
