/* ==========================================================================
   INTERNATIONAL LAWYER GROUP - HOJA DE ESTILOS PRINCIPAL
   Paleta: Oro Metálico & Negro Obsidiana de Lujo
   ========================================================================== */

:root {
  /* Tonalidades de Oro Metálico */
  --gold-primary: #D4AF37;
  --gold-light: #F9E79F;
  --gold-bright: #F5D77F;
  --gold-medium: #C5A059;
  --gold-dark: #9E7D3B;
  --gold-deep: #785E29;
  --gold-gradient: linear-gradient(135deg, #F9E79F 0%, #DFBA73 28%, #C5A059 60%, #9E7D3B 100%);
  --gold-gradient-hover: linear-gradient(135deg, #FFFFFF 0%, #F5D77F 35%, #D4AF37 70%, #B8860B 100%);
  --gold-gradient-subtle: linear-gradient(180deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.02) 100%);

  /* Tonalidades de Negro & Carbón */
  --bg-black: #08080A;
  --bg-surface: #0E0E12;
  --bg-card: #14141A;
  --bg-card-hover: #1A1A22;
  --bg-card-elevated: #1F1F28;
  
  /* Bordes y Resplandores */
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-gold-strong: rgba(212, 175, 55, 0.55);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --glow-gold: 0 0 25px rgba(212, 175, 55, 0.22);
  --glow-gold-lg: 0 10px 40px rgba(212, 175, 55, 0.28);
  --shadow-dark: 0 15px 35px rgba(0, 0, 0, 0.6);

  /* Tipografía y Textos */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Cinzel', serif;
  --text-main: #E2E2E6;
  --text-muted: #A0A0AA;
  --text-dim: #71717A;
  --text-gold: #E5C07B;

  /* Transiciones y Dimensiones */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

/* Reset y Normalización */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-black);
  color: var(--text-main);
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Contenedores y Cuadrícula */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tipografía de Lujo */
h1, h2, h3, h4, .brand-title, .section-title {
  font-family: var(--font-serif);
  color: #FFFFFF;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-divider {
  width: 68px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 16px auto 24px auto;
  border-radius: 2px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--gold-bright);
  font-weight: 700;
  margin-bottom: 8px;
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 14px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.45rem;
  line-height: 1.25;
  margin-top: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
}

/* ==========================================================================
   BOTONES Y ELEMENTOS DE ACCIÓN
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0A0A0C;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
  color: #050507;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-bright);
  border: 1.5px solid var(--gold-medium);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-light);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 0.96rem;
}

.btn-xl {
  padding: 18px 40px;
  font-size: 1.05rem;
  width: 100%;
  max-width: 440px;
}

.w-full {
  width: 100%;
}

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

/* ==========================================================================
   BARRA SUPERIOR (SIN CORREO NI TELÉFONO)
   ========================================================================== */

.top-bar {
  background-color: #060608;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 0.82rem;
  padding: 9px 0;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.badge-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #2ECC71;
  border-radius: 50%;
  box-shadow: 0 0 10px #2ECC71;
  display: inline-block;
}

.top-meta {
  display: flex;
  align-items: center;
  gap: 22px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
}

/* ==========================================================================
   CABECERA Y NAVEGACIÓN
   ========================================================================== */

.navbar-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 11, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 8px 0;
  transition: var(--transition-smooth);
}

.navbar-header.scrolled {
  padding: 6px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
  border-bottom-color: var(--border-gold-strong);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 38px;
  height: 44px;
  object-fit: contain;
  border-radius: 4px;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
  transition: var(--transition-smooth);
}

.brand-logo:hover .logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 12px rgba(212, 175, 55, 0.6));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  letter-spacing: 1.8px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-subtitle {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 1.4px;
  color: var(--gold-bright);
  font-weight: 600;
  margin-top: 2px;
  white-space: nowrap;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: #D1D1D8;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-bright);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-nav-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: 1.2px solid rgba(212, 175, 55, 0.45);
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.04);
  color: var(--gold-bright);
  transition: var(--transition-smooth);
  white-space: nowrap;
  cursor: pointer;
}

.btn-nav-outline:hover {
  background: rgba(212, 175, 55, 0.16);
  border-color: var(--gold-light);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.btn-nav-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-radius: 4px;
  background: var(--gold-gradient);
  color: #08080A;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.25);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-nav-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
  color: #000000;
}

.nav-cta-mobile {
  display: none;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--gold-bright);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   SECCIÓN HERO
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 120px 0 100px 0;
  background: radial-gradient(circle at 75% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 10% 80%, rgba(20, 20, 26, 0.8) 0%, transparent 50%),
              #08080A;
  border-bottom: 1px solid var(--border-gold);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.015' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold-strong);
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.hero-title {
  font-size: 3.25rem;
  line-height: 1.18;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1.1;
}

.metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.metric-divider {
  width: 1px;
  height: 38px;
  background: rgba(212, 175, 55, 0.25);
}

/* Showcase Card en Hero con Abogados Reales */
.hero-showcase {
  position: relative;
}

.showcase-card {
  background: linear-gradient(160deg, #15151D 0%, #0A0A0E 100%);
  border: 1.5px solid var(--border-gold-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-dark), var(--glow-gold);
  position: relative;
  overflow: hidden;
}

.showcase-lawyers-card {
  padding: 18px;
}

.card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
  filter: blur(25px);
  pointer-events: none;
}

.hero-lawyers-img-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  margin-bottom: 16px;
  background: #050507;
}

.hero-lawyers-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.6s ease;
}

.hero-lawyers-img-wrap:hover .hero-lawyers-img {
  transform: scale(1.03);
}

.hero-lawyers-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(0deg, rgba(8, 8, 10, 0.95) 0%, rgba(8, 8, 10, 0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lawyer-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #2ECC71;
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid rgba(46, 204, 113, 0.35);
  padding: 2px 8px;
  border-radius: 12px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.live-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 8px #2ECC71;
}

.caption-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #FFFFFF;
  font-weight: 700;
}

.caption-sub {
  font-size: 0.74rem;
  color: var(--gold-bright);
}

.showcase-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(0, 0, 0, 0.45);
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  margin-bottom: 16px;
  text-align: center;
}

.mini-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-bright);
}

.mini-stat span {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   SECCIÓN SOBRE LA FIRMA
   ========================================================================== */

.about-section {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 38px 30px;
  transition: var(--transition-smooth);
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-strong);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.12);
}

.highlighted-about {
  background: linear-gradient(180deg, #171720 0%, #121218 100%);
  border-color: var(--border-gold);
}

.about-icon,
.legal-emblem-icon {
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: linear-gradient(145deg, #1C1C26 0%, #0E0E14 100%);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1.5px solid var(--border-gold-strong);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 16px rgba(212, 175, 55, 0.18);
  transition: var(--transition-smooth);
}

.about-card:hover .legal-emblem-icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.8), 0 0 24px rgba(212, 175, 55, 0.35);
  border-color: var(--gold-bright);
}

.about-card h3 {
  font-size: 1.32rem;
  margin-bottom: 14px;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
}

.firm-statement-box {
  background: radial-gradient(circle at 10% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
              var(--bg-card-elevated);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 38px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.firm-statement-box.with-passport-showcase {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  align-items: center;
  padding: 36px 40px;
  gap: 40px;
}

.statement-content h4 {
  font-size: 1.32rem;
  color: var(--gold-bright);
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.statement-content p {
  color: var(--text-main);
  font-size: 0.96rem;
  line-height: 1.65;
}

.consular-seal-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.seal-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.seal-item svg {
  color: var(--gold-bright);
}

.statement-passport-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--border-gold-strong);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.15);
  background: #050508;
}

.statement-passport-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s ease;
}

.statement-passport-wrap:hover .statement-passport-img {
  transform: scale(1.04);
}

.passport-stamp-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(0deg, rgba(8, 8, 11, 0.95) 0%, rgba(8, 8, 11, 0.75) 60%, transparent 100%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.4px;
}

.statement-action {
  flex-shrink: 0;
}

/* ==========================================================================
   SECCIÓN EQUIPO JURÍDICO / ABOGADOS REALES
   ========================================================================== */

.team-section {
  background: #09090C;
  border-bottom: 1px solid var(--border-subtle);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 45px;
}

.lawyer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.lawyer-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-strong);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), var(--glow-gold);
}

.lawyer-card.featured-lawyer {
  border-color: var(--border-gold);
  background: linear-gradient(180deg, #161620 0%, #101015 100%);
}

.lawyer-img-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #050507;
}

.lawyer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
}

.lawyer-card:hover .lawyer-img {
  transform: scale(1.04);
}

.lawyer-badge-overlay {
  position: absolute;
  bottom: 14px;
  left: 16px;
  background: rgba(8, 8, 10, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-medium);
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  border-radius: 4px;
}

.lawyer-info {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.lawyer-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.lawyer-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-bright);
  display: block;
  margin-bottom: 14px;
}

.lawyer-credentials {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 14px;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.cred-item svg {
  color: var(--gold-bright);
  flex-shrink: 0;
}

.lawyer-bio {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.lawyer-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.spec-tag {
  font-size: 0.72rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-light);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.lawyer-guarantee-banner {
  background: var(--bg-card-elevated);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--gold-medium);
}

.guarantee-text {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.55;
  flex-grow: 1;
}

.guarantee-text strong {
  color: var(--gold-bright);
}

.guarantee-action {
  flex-shrink: 0;
}

/* ==========================================================================
   SECCIÓN ÁREAS DE PRÁCTICA & TABS
   ========================================================================== */

.practices-section {
  background: #08080A;
  border-bottom: 1px solid var(--border-subtle);
}

.practice-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  padding: 12px 24px;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  color: #FFFFFF;
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: #0B0B0E;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.25);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Banner de Credencial Oficial (Green Cards & Visas) */
.official-credential-banner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, #171722 0%, #0D0D14 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.12);
}

.cred-banner-img-wrap {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--border-gold-strong);
  background: #050508;
}

.cred-banner-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.cred-banner-img-wrap:hover .cred-banner-img {
  transform: scale(1.05);
}

.cred-stamp-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(8, 8, 12, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cred-banner-info {
  display: flex;
  flex-direction: column;
}

.cred-banner-tag {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-bright);
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

.cred-banner-info h4 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.25;
}

.cred-banner-info p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cred-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cred-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.practice-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.practice-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.15);
}

.practice-tag {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: 1px;
}

.card-icon {
  width: 54px;
  height: 54px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.practice-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.practice-card p {
  color: var(--text-muted);
  font-size: 0.91rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.practice-feature-list {
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.practice-feature-list li {
  font-size: 0.84rem;
  color: var(--text-main);
  position: relative;
  padding-left: 18px;
}

.practice-feature-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--gold-bright);
}

.card-action-btn {
  background: transparent;
  border: none;
  color: var(--gold-bright);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-action-btn:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* ==========================================================================
   SECCIÓN: MOVILIDAD GLOBAL, VISADOS Y RUTAS AÉREAS TRANSCONTINENTALES
   ========================================================================== */

.global-mobility-section {
  background: radial-gradient(circle at 50% 15%, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
              #08080B;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.global-mobility-showcase {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.mobility-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-gold-strong);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
  background: #050508;
}

.mobility-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transition: transform 0.8s ease;
}

.mobility-image-container:hover .mobility-img {
  transform: scale(1.02);
}

.mobility-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 11, 0.6) 0%, transparent 35%, rgba(8, 8, 11, 0.85) 90%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 30px;
  pointer-events: none;
}

.mobility-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 14, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  width: fit-content;
  letter-spacing: 0.5px;
}

.mobility-hero-caption {
  max-width: 680px;
}

.mobility-caption-tag {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

.mobility-hero-caption h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #FFFFFF;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.mobility-routes-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, #171724 0%, #0E0E14 100%);
  border: 1.5px solid var(--border-gold);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 16px rgba(212, 175, 55, 0.12);
  flex-wrap: wrap;
}

.routes-bar-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-bright);
  font-family: var(--font-serif);
  letter-spacing: 0.5px;
}

.routes-bar-label svg {
  color: var(--gold-bright);
  flex-shrink: 0;
}

.routes-tags-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.route-city-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
}

.route-city-tag:hover {
  border-color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.route-plane {
  color: var(--gold-bright);
  font-size: 0.95rem;
}

.mobility-grid-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.mobility-feat-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.mobility-feat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
}

.mobility-feat-card.highlighted-feat {
  background: linear-gradient(145deg, #171722 0%, #0E0E14 100%);
  border-color: var(--border-gold);
}

.feat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(145deg, #22222E 0%, #121218 100%);
  border: 1.5px solid var(--border-gold-strong);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), 0 0 12px rgba(212, 175, 55, 0.15);
}

.mobility-feat-card h4 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-family: var(--font-serif);
}

.mobility-feat-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.feat-sub-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 4px 12px;
  border-radius: 16px;
  width: fit-content;
  letter-spacing: 0.5px;
}

/* Sección de Cierre Institucional (Portal Global) */
.global-portal-section {
  background: #08080B;
  border-bottom: 1px solid var(--border-subtle);
  padding: 80px 0;
}

.global-portal-card {
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
              linear-gradient(160deg, #161622 0%, #0A0A0E 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.15);
  max-width: 900px;
  margin: 0 auto;
}

.portal-title {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.portal-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 740px;
  margin: 0 auto 36px auto;
}

.portal-action-group {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   METODOLOGÍA EN 4 ETAPAS
   ========================================================================== */

.process-section {
  background: #09090C;
  border-bottom: 1px solid var(--border-subtle);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.timeline-step {
  display: flex;
  flex-direction: column;
}

.step-counter {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-medium);
  margin-bottom: 16px;
  opacity: 0.8;
  border-bottom: 2px solid var(--border-gold);
  padding-bottom: 8px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.step-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
  flex-grow: 1;
}

.step-detail-tag {
  font-size: 0.74rem;
  color: var(--gold-bright);
  background: rgba(212, 175, 55, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 600;
}

/* ==========================================================================
   POR QUÉ ELEGIRNOS
   ========================================================================== */

.why-us-section {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.why-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}

.feature-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0A0A0D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.feature-item h4 {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.prestige-card {
  background: linear-gradient(150deg, #1A1A22 0%, #0E0E14 100%);
  border: 2px solid var(--gold-medium);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  text-align: center;
  box-shadow: var(--shadow-dark), var(--glow-gold);
}

.prestige-emblem {
  margin-bottom: 20px;
}

.prestige-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 12px;
  border: 1.5px solid var(--gold-bright);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
  object-fit: contain;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px;
}

.prestige-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--gold-bright);
}

.prestige-card p {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.7;
}

.seal-divider {
  width: 80px;
  height: 1px;
  background: var(--border-gold-strong);
  margin: 24px auto;
}

.prestige-signature span {
  display: block;
  font-family: var(--font-serif);
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  font-size: 0.95rem;
}

.prestige-signature small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ==========================================================================
   PREGUNTAS FRECUENTES (FAQ)
   ========================================================================== */

.faq-section {
  background: #08080A;
  border-bottom: 1px solid var(--border-subtle);
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--border-gold);
}

.faq-item.active {
  border-color: var(--border-gold-strong);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 28px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--gold-bright);
}

.faq-icon {
  font-size: 1.6rem;
  color: var(--gold-bright);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   FORMULARIO DE CONSULTA (SIN TELÉFONO NI CORREO)
   ========================================================================== */

.consultation-section {
  background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.1) 0%, transparent 65%),
              var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.consultation-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 50px 45px;
  box-shadow: var(--shadow-dark), var(--glow-gold);
}

.consultation-form {
  margin-top: 36px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
  position: relative;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.form-control {
  background: #0B0B0E;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: #FFFFFF;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-bright);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
  background: #111116;
}

.form-control option {
  background-color: #111116;
  color: #FFFFFF;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.error-msg {
  color: #FF6B6B;
  font-size: 0.78rem;
  margin-top: 5px;
  display: none;
}

.form-group.has-error .form-control {
  border-color: #FF6B6B;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-check-group {
  margin-bottom: 30px;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--text-muted);
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 20px;
  height: 20px;
  background-color: #0B0B0E;
  border: 1.5px solid var(--border-gold);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: var(--transition-smooth);
}

.custom-checkbox:hover input ~ .checkmark {
  border-color: var(--gold-bright);
}

.custom-checkbox input:checked ~ .checkmark {
  background: var(--gold-gradient);
}

.custom-checkbox input:checked ~ .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #0A0A0C;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.gold-link {
  color: var(--gold-bright);
  text-decoration: underline;
}

.form-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 16px;
}

/* ==========================================================================
   MODALES INTERACTIVOS
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 4, 6, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 620px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-dark), var(--glow-gold-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--gold-bright);
}

.modal-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold-bright);
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 6px;
}

.modal-title {
  font-size: 1.55rem;
  color: #FFFFFF;
}

.modal-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 18px 0 26px 0;
}

.modal-body ul {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-body li {
  position: relative;
  padding-left: 18px;
  color: var(--text-main);
  font-size: 0.9rem;
}

.modal-body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-bright);
}

.modal-footer {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Modal de Éxito y Ticket */
.success-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.15);
  color: #2ECC71;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 2px solid #2ECC71;
  box-shadow: 0 0 25px rgba(46, 204, 113, 0.3);
}

.case-ticket-box {
  background: #0B0B0F;
  border: 1.5px dashed var(--border-gold-strong);
  border-radius: var(--radius-sm);
  padding: 22px;
  margin: 22px 0;
}

.ticket-header {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-bright);
  font-weight: 700;
  margin-bottom: 6px;
}

.ticket-number {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 2px;
}

.ticket-date {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.modal-subtext {
  font-size: 0.86rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.terms-scroll {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 10px;
}

/* ==========================================================================
   PIE DE PÁGINA (FOOTER)
   ========================================================================== */

.site-footer {
  background-color: #050507;
  border-top: 1px solid var(--border-gold);
  padding: 80px 0 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 44px;
  height: 48px;
  border-radius: 6px;
  border: none;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35));
}

.footer-brand-title {
  display: block;
  font-family: var(--font-serif);
  font-weight: 800;
  color: #FFFFFF;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.footer-brand-sub {
  display: block;
  font-size: 0.62rem;
  color: var(--gold-bright);
  letter-spacing: 1.5px;
}

.footer-about-text {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.footer-certifications {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gold-bright);
}

.footer-heading {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--gold-bright);
  transform: translateX(4px);
}

.footer-info-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.footer-schedule {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.schedule-item strong {
  display: block;
  font-size: 0.84rem;
  color: var(--gold-bright);
}

.schedule-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom {
  background-color: #030304;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright-text {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-legal-links a:hover {
  color: var(--gold-bright);
}

/* ==========================================================================
   RESPONSIVIDAD & ADAPTABILIDAD
   ========================================================================== */

@media (max-width: 1080px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid,
  .grid-cards,
  .process-timeline,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .simulator-wrapper,
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }

  .top-meta {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 61px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 61px);
    background: #0A0A0E;
    flex-direction: column;
    padding: 30px 24px;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid var(--border-gold);
    overflow-y: auto;
  }

  .nav-menu.open {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: 8px 0;
  }

  .nav-cta-mobile {
    display: block;
    width: 100%;
    margin-top: 24px;
  }

  .nav-actions .btn-nav-gold,
  .nav-actions .btn-nav-outline {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-grid,
  .grid-cards,
  .process-timeline,
  .team-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .lawyer-guarantee-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 18px;
  }

  .firm-statement-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .firm-statement-box.with-passport-showcase {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 24px;
    padding: 26px 20px;
  }

  .official-credential-banner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 16px;
  }

  .cred-banner-img {
    height: 180px;
  }

  .mobility-img {
    height: 320px;
  }

  .mobility-hero-caption h3 {
    font-size: 1.3rem;
  }

  .mobility-routes-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
  }

  .mobility-grid-features {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .global-portal-card {
    padding: 36px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
