/* ── Variables Globales ── */
:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6914;
  --navy: #0A1628;
  --navy-mid: #132040;
  --navy-light: #1E3060;
  --cream: #F8F4EE;
  --cream-dark: #EDE6D8;
  --white: #FFFFFF;
  --text-dark: #0A1628;
  --text-muted: #5A6882;
  --accent: #2ECC8F;
  --accent-dark: #1A9966;
  --red-mex: #C0392B;
  --green-mex: #27AE60;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-xl: 32px;
  --shadow-gold: 0 8px 40px rgba(201,169,110,0.25);
  --shadow-navy: 0 8px 40px rgba(10,22,40,0.3);
}

/* ── Reset Básicos ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ── Cursor Personalizado ── */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s, height 0.3s, background 0.3s;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s;
}

/* ── Textura de Ruido de Fondo ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── Barra de Scroll Personalizada ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ── Progress Bar Top ── */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  z-index: 1000;
  width: 0%;
  transition: width 0.1s;
}

/* ── Navbar ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding: 0.8rem 4rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  line-height: 1.2;
}

.nav-logo-text span:first-child {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.nav-logo-text span:last-child {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

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

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

.nav-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  border-radius: 2px;
}

/* Estilos responsive básicos para el Navbar */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }
  nav.scrolled {
    padding: 0.8rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* ── Hero Section ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Offset para el navbar fixed */
  background: var(--navy);
  overflow: hidden;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: calc(100vh - 80px);
  display: flex;
}

/* Columna Izquierda (50% Ancho y 100% Alto) */
.hero-media {
  width: 50%;
  position: relative;
  min-height: 100%;
  display: flex;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.85) 100%);
}

.hero-badge-overlay {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-navy);
}

.hero-badge-overlay i {
  font-size: 1.8rem;
  color: var(--gold);
}

.hero-badge-overlay strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
}

.hero-badge-overlay span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Columna Derecha (50% Ancho) */
.hero-content {
  width: 50%;
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  width: fit-content;
}

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

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.text-gold {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Botones reutilizables */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 169, 110, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

/* Estadísticas / Contadores */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.counter-num {
  font-family: 'Space Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-plus {
  font-family: 'Space Mono', monospace;
  font-size: 1.5rem;
  color: var(--gold);
  margin-right: 0.3rem;
}

.stat-item p {
  width: 100%;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Hero */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column-reverse;
  }
  .hero-media, .hero-content {
    width: 100%;
  }
  .hero-media {
    height: 350px;
  }
  .hero-content {
    padding: 3rem 1.5rem;
  }
}

/* ── Cintillo / Banner Carrusel Infinito ── */
.ticker-wrapper {
  width: 100%;
  background: var(--gold);
  overflow: hidden;
  padding: 0.8rem 0;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  position: relative;
  z-index: 5;
}

.ticker-track {
  display: inline-flex;
  gap: 3rem;
  animation: tickerScroll 25s linear infinite;
}

.ticker-wrapper:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ticker-item i {
  font-size: 1.1rem;
  color: var(--navy-mid);
}

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

/* ── Estilos Generales de Sección ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-tag-dark {
  background: rgba(139, 105, 20, 0.1);
  border: 1px solid rgba(139, 105, 20, 0.25);
  color: var(--gold-dark);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-title-dark {
  color: var(--navy);
}

.text-gold-dark {
  color: var(--gold-dark);
}

/* ── Sección Nosotros (Fondo Claro) ── */
.about-section.about-light {
  background: var(--cream);
  color: var(--text-dark);
  padding: 6rem 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

/* Columna de Imagen (Izquierda) */
.about-media {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(10, 22, 40, 0.12);
  display: block;
  opacity: 0.88;
  filter: brightness(0.95) contrast(1.02);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.about-image-wrapper:hover .about-img {
  opacity: 1;
  filter: brightness(1) contrast(1);
}

.about-img-frame {
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.6;
}

/* Badge con la Cédula del Contador */
.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  border: 1px solid var(--gold);
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-navy);
  max-width: 320px;
}

.about-experience-badge i.fa-award {
  font-size: 2rem;
  color: var(--gold);
  margin-top: 2px;
}

.about-experience-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.3;
}

.about-experience-badge .badge-title {
  display: block;
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-top: 2px;
}

.about-experience-badge .badge-cedula {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-experience-badge .badge-cedula i {
  font-size: 0.7rem;
  color: var(--gold);
}

/* Columna de Texto (Derecha) */
.about-lead-dark {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-text-dark {
  font-size: 0.95rem;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Grid de Pilares */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.pillar-card-light {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.pillar-card-light:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.2);
  transform: translateY(-3px);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(201, 169, 110, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.pillar-card-light h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.pillar-card-light p {
  font-size: 0.85rem;
  color: #5A6882;
  line-height: 1.4;
}

/* ── Clases para Animación al Scroll ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ── Adaptación Móvil / Responsive ── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img {
    height: 380px;
  }
  .about-experience-badge {
    right: 0;
    bottom: -15px;
    padding: 0.9rem 1.2rem;
  }
}

/* ── Sección Servicios ── */
.services-section {
  padding: 6rem 0;
  background: var(--navy);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* Grid de Servicios */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Tarjeta de Servicio */
.service-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  background: var(--navy-light);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(5deg) scale(1.05);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Lista de entregables */
.service-features {
  list-style: none;
  margin-bottom: 2rem;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-features li {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-features li i {
  color: var(--gold);
  font-size: 0.75rem;
}

/* Enlace a contacto */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--white);
}

.service-card:hover .service-link i {
  transform: translateX(6px);
  color: var(--gold);
}

/* Retardo animaciones */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Responsive Servicios */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Sección ¿Por qué elegirnos? Tema Claro ── */
.why-section.why-light {
  background: var(--cream);
  padding: 6rem 0;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.why-lead {
  font-size: 1.05rem;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Métricas y Stats */
.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(10, 22, 40, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold-dark);
  font-weight: 700;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: #5A6882;
  font-weight: 600;
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Banner Informativo CTA */
.why-cta-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(139, 105, 20, 0.25);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
}

.why-cta-box i {
  font-size: 1.5rem;
  color: var(--gold-dark);
}

.why-cta-box p {
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
}

/* Columna Derecha: Tarjetas de Beneficio */
.why-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  padding: 1.4rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateX(8px);
  border-color: var(--gold);
  box-shadow: 0 10px 25px rgba(201, 169, 110, 0.18);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(10, 22, 40, 0.04);
  border: 1px solid rgba(139, 105, 20, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: var(--navy);
  color: var(--gold);
}

.benefit-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.benefit-card p {
  font-size: 0.875rem;
  color: #5A6882;
  line-height: 1.5;
  margin: 0;
}

/* Responsive ¿Por qué elegirnos? */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .why-stats {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* ── Sección Proceso de Trabajo ── */
.process-section {
  padding: 6rem 0;
  background: var(--navy-mid);
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}

/* Tarjeta de Paso */
.step-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.15);
  line-height: 1;
  transition: color 0.3s ease;
}

.step-card:hover .step-number {
  color: rgba(201, 169, 110, 0.35);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  background: var(--gold);
  color: var(--navy);
}

.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Proceso */
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}


/* ── Bloque de Regímenes Fiscales ── */
.regimenes-container {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: var(--navy);
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-radius: var(--radius);
  text-align: center;
}

.regimenes-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.regimenes-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.regimenes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.regimen-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.regimen-tag i {
  color: var(--gold);
  font-size: 1rem;
}

.regimen-tag:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Destacado para RESICO */
.regimen-tag.highlight-gold {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

@media (max-width: 768px) {
  .regimenes-container {
    padding: 2rem 1rem;
  }
  .regimen-tag {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ── Sección Contacto Tema Claro ── */
.contact-section.contact-light {
  background: var(--cream);
  padding: 6rem 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-lead {
  font-size: 1rem;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Items de Información de Contacto */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  padding: 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.contact-card-item:hover {
  transform: translateX(6px);
  border-color: var(--gold);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.15);
}

/* Estilos para enlaces de contacto adicionales */
.contact-card-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card-item a:hover {
  color: var(--gold-dark);
}

.contact-value-sub {
  display: block;
  font-size: 0.85rem;
  color: #5A6882;
  font-weight: 600;
  margin-top: 2px;
}

.contact-subtext-click {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: #25D366;
  font-weight: 600;
  margin-top: 2px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(10, 22, 40, 0.04);
  border: 1px solid rgba(139, 105, 20, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.contact-icon.whatsapp-bg {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.contact-value {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 700;
  margin-top: 2px;
}

.contact-subtext {
  display: block;
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 2px;
}

/* Tarjeta y Formulario */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.contact-form p {
  font-size: 0.875rem;
  color: #718096;
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--navy);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.btn-block {
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
  cursor: pointer;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Responsive Contacto */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 1.5rem;
  }
}