/* ============================================
   GLENDA PINTO SEGUROS — STYLES
   Paleta: azul rey #0A3D91 / dorado #D4AF37
   ============================================ */

:root {
  --primary: #0A3D91;
  --primary-glow: #1657c2;
  --primary-dark: #062866;
  --gold: #D4AF37;
  --gold-light: #e6c862;
  --gold-foreground: #1a1a1a;
  --background: #ffffff;
  --foreground: #1a2540;
  --muted: #f5f7fb;
  --muted-foreground: #6b7493;
  --border: #e5e9f2;
  --secondary: #f5f7fb;
  --accent: #eef2fa;

  --gradient-hero: linear-gradient(135deg, rgba(10,61,145,.85), rgba(6,40,102,.78));
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-glow));
  --gradient-gold: linear-gradient(135deg, var(--gold), var(--gold-light));
  --gradient-cta: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);

  --shadow-soft: 0 4px 20px -4px rgba(10,61,145,.15);
  --shadow-elegant: 0 20px 50px -15px rgba(10,61,145,.3);
  --shadow-gold: 0 10px 30px -8px rgba(212,175,55,.5);
  --shadow-card: 0 2px 12px -2px rgba(26,37,64,.08);

  --transition: all .4s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--primary);
}
h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.875rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 700; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============ Iconos Lucide ============ */
[data-lucide] { width: 1.25rem; height: 1.25rem; stroke-width: 2; }

/* ============ Botones ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: var(--transition); white-space: nowrap;
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-gold { background: var(--gradient-gold); color: var(--gold-foreground); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: scale(1.05); }
.btn-glass { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,.22); }
.btn-primary { background: var(--gradient-primary); color: #fff; box-shadow: var(--shadow-elegant); padding: 1rem 1.5rem; border-radius: 12px; }
.btn-primary:hover { transform: scale(1.02); }
.btn-block { width: 100%; }

/* ============ Eyebrow ============ */
.eyebrow {
  display: inline-block; padding: .375rem 1rem; margin-bottom: 1rem;
  border-radius: 999px; background: rgba(212,175,55,.18); border: 1px solid rgba(212,175,55,.4);
  color: var(--gold); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em; backdrop-filter: blur(4px);
}
.eyebrow-gold { background: none; border: none; color: var(--gold); padding: 0; }

/* ============ Navbar ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 1.25rem 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); background: transparent;
}
.navbar.scrolled { 
  top: 1rem; left: 50%; transform: translateX(-50%); width: calc(100% - 2rem); max-width: 1200px;
  background: rgba(10, 61, 145, 0.75); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 2rem; border-radius: 100px; 
  box-shadow: 0 10px 40px -10px rgba(10,61,145,0.5); border: 1px solid rgba(255,255,255,0.15);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
.brand { display: flex; align-items: center; gap: .625rem; }
.brand-badge {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold);
  transition: var(--transition);
}
.brand:hover .brand-badge { transform: scale(1.1); }
.brand-badge span { font-family: 'Playfair Display', serif; color: var(--gold); font-weight: 700; font-size: 1.125rem; }
.brand-badge-gold { background: var(--gradient-gold); }
.brand-badge-gold span { color: var(--gold-foreground); }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.0625rem; color: #fff; transition: var(--transition); }
.navbar.scrolled .brand-name { color: #fff; }
.brand-sub { font-size: .625rem; text-transform: uppercase; letter-spacing: .15em; color: rgba(255,255,255,.8); transition: var(--transition); }
.navbar.scrolled .brand-sub { color: rgba(255,255,255,.8); }
.brand-light { color: #fff !important; }
.brand-sub-light { color: rgba(255,255,255,.7) !important; }

.nav-links { display: none; gap: 2rem; }
.nav-links a { position: relative; font-size: .875rem; font-weight: 500; color: #fff; transition: var(--transition); padding-bottom: 4px; }
.navbar.scrolled .nav-links a { color: #fff; }
.nav-links a:hover { color: var(--gold) !important; }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s ease-out; border-radius: 2px;
}
.nav-links a:hover::after { width: 100%; }

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(212,175,55, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212,175,55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55, 0); }
}
.nav-cta { display: none; padding: .625rem 1.25rem; font-size: .875rem; animation: pulseGold 2.5s infinite; }
.nav-cta:hover { animation: none; transform: scale(1.05); }
.menu-btn { padding: .5rem; color: #fff; }
.navbar.scrolled .menu-btn { color: #fff; }

.mobile-menu {
  display: none; flex-direction: column; gap: 1rem; padding: 1.5rem;
  background: var(--background); border-top: 1px solid var(--border);
  animation: fadeIn .3s ease-out;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: .5rem 0; color: var(--foreground); font-weight: 500; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-btn { display: none; }
  .mobile-menu { display: none !important; }
}

/* ============ Hero ============ */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero-slide video { width: 100%; height: 100%; object-fit: contain; background: #000; pointer-events: auto; }
.hero-overlay { position: absolute; inset: 0; background: var(--gradient-hero); }
.hero-content { position: relative; z-index: 10; height: 100%; display: flex; align-items: center; }
.hero-text { max-width: 640px; color: #fff; animation: fadeUp .8s cubic-bezier(.4,0,.2,1) both; }
.hero-text h1 { color: #fff; margin-bottom: 1.5rem; }
.hero-text p { font-size: clamp(1rem, 1.5vw, 1.25rem); color: rgba(255,255,255,.9); margin-bottom: 2.5rem; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.hero-arrow:hover { background: rgba(255,255,255,.22); }
.hero-prev { left: 1rem; }
.hero-next { right: 1rem; }
@media (min-width: 768px) { .hero-prev { left: 2rem; } .hero-next { right: 2rem; } }
.hero-arrow [data-lucide] { width: 1.5rem; height: 1.5rem; }

/* ============ Controles de Video ============ */
.video-controls {
  position: absolute; bottom: 6rem; left: 2rem; right: auto; z-index: 30;
  display: flex; gap: 0.75rem; pointer-events: none;
}
.mute-btn, .play-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); pointer-events: auto;
}
.mute-btn:hover, .play-btn:hover { background: rgba(212,175,55,.8); border-color: var(--gold); transform: scale(1.1); }
.mute-btn [data-lucide], .play-btn [data-lucide] { width: 1.25rem; height: 1.25rem; }
@media (max-width: 768px) { .video-controls { bottom: 5rem; left: 1.5rem; right: auto; } }

.hero-dots {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; gap: .75rem;
}
.dot { height: 6px; width: 24px; border-radius: 999px; background: rgba(255,255,255,.4); transition: var(--transition); }
.dot:hover { background: rgba(255,255,255,.7); }
.dot.active { width: 40px; background: var(--gold); }

/* ============ Sections ============ */
.section { padding: clamp(4rem, 10vw, 8rem) 0; }
.bg-secondary { background: var(--secondary); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-head h2 { margin-bottom: 1.25rem; }
.section-head p { color: var(--muted-foreground); font-size: 1.125rem; }
.lead { color: var(--muted-foreground); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 1rem; }

.grid-2 { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* ============ Mision (Nosotros) ============ */
.mission-img-wrap { position: relative; padding: 2rem; background: #fff; border-radius: 1.5rem; box-shadow: var(--shadow-soft); border: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.mission-circle-container { position: relative; width: 100%; max-width: 480px; margin-bottom: 2rem; display: flex; align-items: center; justify-content: center; }
.mission-inner-circle { width: 100%; height: auto; position: relative; z-index: 2; display: flex; }
.mission-inner-circle img { width: 100%; height: auto; object-fit: contain; border-radius: 50%; box-shadow: 0 10px 30px rgba(10,61,145,.15); }
.mission-badge-card { width: 100%; background: var(--primary-dark); border-radius: 12px; padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1rem; color: #fff; box-shadow: 0 8px 20px rgba(6,40,102,.3); position: relative; z-index: 5; }
.m-badge-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-gold); color: var(--gold-foreground); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; flex-shrink: 0; }
.m-badge-info h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.25rem; margin-bottom: 0.1rem; }
.m-badge-info p { font-size: 0.65rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; white-space: nowrap; }

.m-eyebrow { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--gold); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.25rem; }
.mission-title { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1.5rem; color: var(--primary-dark); line-height: 1.15; }
.mission-lead { color: var(--muted-foreground); font-size: 1.05rem; line-height: 1.6; margin-bottom: 2rem; }
.mission-lead strong { color: var(--primary-dark); font-weight: 600; }

.m-points-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.m-point { background: #fff; border: 1px solid var(--border); border-radius: 1.25rem; padding: 1.25rem; display: flex; align-items: center; gap: 1.25rem; box-shadow: 0 4px 15px rgba(26,37,64,.03); transition: var(--transition); }
.m-point:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); border-color: rgba(10,61,145,.1); }
.m-point-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-dark); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 10px rgba(6,40,102,.2); }
.m-point-icon [data-lucide] { width: 1.2rem; height: 1.2rem; }
.m-point-content { display: flex; flex: 1; align-items: center; gap: 1rem; }
.m-col { flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.m-col h4 { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--primary-dark); font-weight: 600; margin: 0; }
.m-col p { font-size: 0.8rem; color: var(--muted-foreground); margin: 0; line-height: 1.4; }
.m-divider { width: 1px; height: 40px; background: rgba(212,175,55,.3); flex-shrink: 0; margin: 0 0.5rem; }
.m-col-en h4 { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold); font-size: 1rem; font-weight: 600; }
.m-col-en p { font-size: 0.75rem; color: var(--muted-foreground); font-style: italic; opacity: 0.9; }

.m-cta-bar { background: var(--primary-dark); border-radius: 1rem; padding: 1.25rem 2rem; display: flex; align-items: center; gap: 1.25rem; color: #fff; box-shadow: 0 8px 25px rgba(6,40,102,.2); }
.m-cta-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-gold); color: var(--gold-foreground); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.m-cta-text { display: flex; flex-direction: column; gap: 0.3rem; width: 100%; }
.m-cta-columns { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 1.5rem; }
.m-cta-col { flex: 1; display: flex; flex-direction: column; gap: 0.2rem; }
.m-cta-col-es { text-align: right; }
.m-cta-col-en { text-align: left; }
.m-cta-title { font-size: 0.85rem; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; text-transform: uppercase; }
.m-cta-sub { font-size: 0.8rem; color: rgba(255,255,255,.9); line-height: 1.3; }
.m-sep { color: rgba(255,255,255,.3); font-weight: 300; font-size: 1.5rem; line-height: 1; }

@media (max-width: 768px) {
  .m-point-content { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .m-divider { height: 1px; width: 40%; margin: 0.25rem 0; }
  .m-cta-bar { flex-direction: column; text-align: center; padding: 1.5rem; }
  .m-cta-columns { flex-direction: column; gap: 1.5rem; }
  .m-cta-col { text-align: center; }
  .m-cta-col-es, .m-cta-col-en { text-align: center; }
  .m-sep { display: none; }
}

/* ============ Servicios ============ */
.services-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative; background: var(--background); border-radius: 1rem; padding: 2rem;
  box-shadow: var(--shadow-card); border: 1px solid var(--border);
  transition: var(--transition); overflow: hidden;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-elegant); }
.service-icon {
  width: 56px; height: 56px; border-radius: 1rem; background: var(--gradient-primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; box-shadow: var(--shadow-soft); transition: var(--transition);
}
.service-icon [data-lucide] { width: 1.5rem; height: 1.5rem; }
.service-card:hover .service-icon { transform: scale(1.1) rotate(6deg); }
.service-card h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.service-card p { color: var(--muted-foreground); font-size: .875rem; margin-bottom: 1.25rem; }
.service-card a { font-size: .875rem; font-weight: 600; color: var(--primary); transition: var(--transition); }
.service-card:hover a { color: var(--gold); }

/* ============ Beneficios ============ */
.benefits-grid { display: grid; gap: 1.25rem; max-width: 1080px; margin: 0 auto; grid-template-columns: 1fr; }
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit {
  display: flex; gap: 1rem; align-items: flex-start; padding: 1.5rem;
  border-radius: 1rem; background: var(--secondary);
  border: 1px solid transparent; transition: var(--transition);
}
.benefit:hover { background: var(--accent); border-color: rgba(212,175,55,.3); }
.benefit [data-lucide] { color: var(--gold); width: 1.5rem; height: 1.5rem; flex-shrink: 0; margin-top: .125rem; }
.benefit h3 { margin-bottom: .25rem; color: var(--foreground); }
.benefit p { font-size: .875rem; color: var(--muted-foreground); }

/* ============ Mapa Licencias ============ */
.map-section {
  display: flex; flex-direction: column; gap: 2.5rem; align-items: center; margin-top: 5rem; padding: 3rem;
  background: var(--background); border-radius: 1.5rem; text-align: center;
  box-shadow: var(--shadow-card); border: 1px solid var(--border);
}
.map-content { max-width: 900px; margin: 0 auto; }
.map-content h3 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; color: var(--primary-dark); }
.map-content > p { color: var(--muted-foreground); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.7; }
.map-perks { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.map-perks li { display: flex; align-items: center; gap: .75rem; font-size: 1rem; color: var(--foreground); font-weight: 500; }
.map-perks [data-lucide] { color: var(--gold); width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.map-image-wrapper {
  width: 100%; position: relative; border-radius: 1rem; overflow: hidden;
  box-shadow: var(--shadow-soft); background: var(--secondary); padding: 1.5rem;
  display: flex; justify-content: center; align-items: center;
}
.map-img { width: 100%; max-height: 700px; object-fit: contain; border-radius: .5rem; position: relative; z-index: 2; transition: transform 0.4s ease; }
.map-image-wrapper:hover .map-img { transform: scale(1.02); }
.map-glow { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(10,61,145,.08) 0%, transparent 70%); z-index: 1; pointer-events: none; }

/* ============ Testimonios ============ */
.testimonials-grid { display: grid; gap: 1.5rem; max-width: 1200px; margin: 0 auto; grid-template-columns: 1fr; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  position: relative; background: var(--background); border-radius: 1rem; padding: 2rem;
  box-shadow: var(--shadow-card); border: 1px solid var(--border); transition: var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-elegant); }
.quote-icon { position: absolute; top: 1.5rem; right: 1.5rem; color: rgba(212,175,55,.25); width: 2.5rem !important; height: 2.5rem !important; }
.stars { display: flex; gap: .25rem; margin-bottom: 1rem; }
.stars [data-lucide] { width: 1rem; height: 1rem; color: var(--gold); fill: var(--gold); }
.testimonial > p { color: var(--foreground); font-style: italic; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700;
}
.t-name { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--primary); }
.t-role { font-size: .75rem; color: var(--muted-foreground); }

/* ============ CTA Banner ============ */
.cta-banner {
  position: relative; padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--gradient-cta); overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.cta-banner::before { top: 0; }
.cta-banner::after { bottom: 0; }
.cta-glow { position: absolute; width: 24rem; height: 24rem; border-radius: 50%; background: rgba(212,175,55,.1); filter: blur(60px); }
.cta-glow-1 { top: -8rem; right: -8rem; }
.cta-glow-2 { bottom: -8rem; left: -8rem; }
.cta-inner { position: relative; z-index: 10; text-align: center; color: #fff; }
.cta-inner h2 { color: #fff; margin: 0 auto 1.5rem; max-width: 720px; }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 1.125rem; max-width: 560px; margin: 0 auto 2.5rem; }
.cta-inner .hero-cta { justify-content: center; }

/* ============ Contacto ============ */
.contact-grid { display: grid; gap: 2.5rem; max-width: 1200px; margin: 0 auto; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: center; }
.ci-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--gradient-primary);
  color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft);
}
.ci-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-foreground); }
.ci-value { font-weight: 600; color: var(--foreground); }

.contact-form {
  background: var(--secondary); border-radius: 1.5rem; padding: 2rem;
  box-shadow: var(--shadow-card); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1.25rem;
}
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.form-row { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--foreground); margin-bottom: .5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--background); border: 1px solid var(--border);
  border-radius: 12px; padding: .875rem 1rem; color: var(--foreground);
  font-family: inherit; font-size: .9375rem; transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,61,145,.15);
}
.form-group textarea { resize: none; }
.form-msg { font-size: .875rem; font-weight: 500; margin-top: 1rem; min-height: 1.25rem; }
.form-msg.success { color: #16a34a; }
.form-msg.error { color: #dc2626; }

/* ============ Phone Directory Cards ============ */
.phone-card {
  background: rgba(10,61,145,0.03); padding: 0.75rem 1rem; border-radius: 12px;
  border: 1px solid rgba(10,61,145,0.08); display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); margin-bottom: 0.75rem;
}
.phone-card:last-child { margin-bottom: 0; }
.phone-card:hover {
  background: #fff; border-color: rgba(212,175,55,0.3);
  box-shadow: 0 4px 15px -3px rgba(10,61,145,0.08); transform: translateY(-2px);
}
.phone-card-title { font-size: 0.7rem; color: var(--muted-foreground); text-transform: uppercase; font-weight: 700; letter-spacing: 0.05em; display: block; margin-bottom: 0.1rem; }
.phone-card-number { color: var(--primary); font-weight: 600; font-size: 1rem; transition: color 0.3s; }
.phone-card:hover .phone-card-number { color: var(--gold); }
.phone-card-wa {
  color: #25D366; background: rgba(37, 211, 102, 0.1); width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.phone-card-wa:hover { background: #25D366; color: #fff; transform: scale(1.1); box-shadow: 0 4px 10px rgba(37,211,102,0.3); }
.phone-card-call {
  color: var(--primary); background: rgba(10, 61, 145, 0.1); width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.phone-card-call:hover { background: var(--primary); color: #fff; transform: scale(1.1); box-shadow: 0 4px 10px rgba(10,61,145,0.3); }

/* ============ Footer ============ */
.footer { background: var(--primary); color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand .brand { margin-bottom: 1.25rem; }
.footer-desc { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.7; max-width: 420px; margin-bottom: 1.5rem; }
.socials { display: flex; gap: .75rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.socials a:hover { background: var(--gradient-gold); color: var(--gold-foreground); }
.socials [data-lucide] { width: 1rem; height: 1rem; }
.footer-title { font-family: 'Playfair Display', serif; color: var(--gold); margin-bottom: 1rem; font-weight: 700; font-size: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-links li, .footer-links a { color: rgba(255,255,255,.75); font-size: .875rem; transition: var(--transition); display: flex; align-items: center; gap: .5rem; }
.footer-links a:hover { color: var(--gold); }
.footer-links [data-lucide] { color: var(--gold); width: 1rem; height: 1rem; }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between;
  font-size: .75rem; color: rgba(255,255,255,.6); text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; text-align: left; } }

/* ============ Floating ============ */
.floating { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 40; display: flex; flex-direction: column; gap: .75rem; }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-elegant); transition: var(--transition);
  animation: fadeIn .6s ease-out both;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn [data-lucide] { width: 1.5rem; height: 1.5rem; }
.float-wa { background: #25D366; color: #fff; }
.float-call { background: var(--gradient-primary); }
.float-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.float-tt { background: #000; }
@media (min-width: 768px) { .float-call { display: none; } }
@media (max-width: 768px) {
  .floating { flex-direction: row; bottom: 1rem; right: 1rem; gap: 0.5rem; }
  .float-btn { width: 44px; height: 44px; }
  .float-btn [data-lucide], .float-btn svg { width: 1.2rem !important; height: 1.2rem !important; margin: 0 !important; }
  .footer { padding-bottom: 5rem; }
}

/* ============ BLOG PREMIUM ============ */
.blog-premium-section {
  position: relative;
  background: var(--background);
  padding: 0 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

/* 1. Blog Hero */
.blog-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  border-radius: 0 0 2rem 2rem;
  overflow: hidden;
  margin-bottom: -4rem; /* Overlap with grid */
  box-shadow: var(--shadow-elegant);
}
.blog-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.blog-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,40,102,0.92) 0%, rgba(10,61,145,0.7) 100%);
  backdrop-filter: blur(2px);
}
.blog-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.blog-hero-title {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.blog-hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin: 0 auto 2.5rem;
  max-width: 600px;
  line-height: 1.7;
}
.blog-hero-btn {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.blog-hero-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--gold-foreground);
  transform: translateY(-3px);
}

/* 2. Blog Grid */
.blog-grid-container {
  position: relative;
  z-index: 20;
  margin-bottom: 5rem;
}
.blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.blog-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 40px -10px rgba(10,61,145,0.12);
  border: 1px solid var(--border);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(10,61,145,0.25);
  border-color: rgba(212,175,55,0.4);
}
.blog-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}
.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(5px);
  color: var(--primary-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.5);
}
.blog-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-date {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}
.blog-card-content h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--primary-dark);
  transition: color 0.3s ease;
}
.blog-card:hover .blog-card-content h3 {
  color: var(--gold);
}
.blog-excerpt {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  transition: var(--transition);
}
.blog-read-more [data-lucide] {
  width: 1.1rem;
  height: 1.1rem;
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-read-more {
  color: var(--gold);
}
.blog-card:hover .blog-read-more [data-lucide] {
  transform: translateX(5px);
}

/* 3. Mensaje Editorial y Newsletter */
.blog-bottom-section {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .blog-bottom-section {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.blog-editorial {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .blog-editorial { flex-direction: row; align-items: center; }
}
.editorial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  border: 3px solid var(--background);
  flex-shrink: 0;
}
.editorial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.editorial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--primary-dark);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}
.editorial-signature {
  display: flex;
  flex-direction: column;
  padding-left: 1.25rem;
}
.sig-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
}
.sig-role {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-newsletter {
  background: var(--gradient-primary);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
  color: #fff;
}
.blog-newsletter::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter-glass {
  position: relative;
  z-index: 10;
}
.newsletter-glass h3 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}
.newsletter-glass p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.newsletter-form input {
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.6);
}
.newsletter-form input:focus {
  outline: none;
  background: rgba(255,255,255,0.15);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}
.newsletter-form button {
  padding: 1rem;
  font-size: 1rem;
  border-radius: 0.75rem;
}

/* ============ Tech Aesthetics ============ */
.tech-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.tech-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(10,61,145,0.1), rgba(212,175,55,0.4), transparent);
  z-index: -1;
  border-radius: 1.6rem;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: borderRotate 4s linear infinite;
}
.tech-card:hover::before {
  opacity: 1;
}
.blog-hero-overlay {
  background: 
    linear-gradient(135deg, rgba(6,40,102,0.92) 0%, rgba(10,61,145,0.7) 100%),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px, 30px 30px;
  backdrop-filter: blur(3px);
}
@keyframes borderRotate {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(6,40,102,0.4));
  opacity: 0;
  transition: opacity 0.5s ease;
}
.tech-card:hover .blog-card-img::after {
  opacity: 1;
}
.blog-card-content {
  position: relative;
  z-index: 2;
}

/* ============ ASISTENCIA VIP ============ */
.vip-page {
  background-color: var(--background);
}
.vip-hero {
  position: relative;
  padding: 12rem 0 8rem;
  background-color: var(--primary-dark);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.vip-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(6,40,102,1) 0%, rgba(10,61,145,0.85) 100%);
}
.vip-hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% { transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(100px) translateZ(-200px); }
}
.vip-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  filter: blur(50px);
}
.vip-hero-content {
  position: relative;
  z-index: 10;
}
.vip-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.vip-services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
}
@media (min-width: 768px) { .vip-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .vip-services-grid { grid-template-columns: repeat(3, 1fr); } }

.vip-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px -10px rgba(10,61,145,0.1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.vip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.vip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(10,61,145,0.2);
  border-color: var(--gold);
}
.vip-card:hover::before { opacity: 1; }
.vip-card-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: var(--gradient-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.vip-card-icon [data-lucide] { width: 32px; height: 32px; }
.vip-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}
.vip-card p {
  position: relative;
  z-index: 1;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Timeline VIP */
.vip-timeline {
  position: relative;
  max-width: 800px;
  margin: 4rem auto 0;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .vip-timeline { padding-left: 50%; }
}
.vip-timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 2rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(212,175,55,0.1));
}
@media (min-width: 768px) {
  .vip-timeline::before { left: 50%; transform: translateX(-50%); }
}
.timeline-step {
  position: relative;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .timeline-step:nth-child(odd) {
    text-align: right;
    padding-right: 3rem;
    left: -100%;
  }
  .timeline-step:nth-child(even) {
    padding-left: 3rem;
  }
}
.timeline-icon {
  position: absolute;
  top: 0;
  left: -2rem;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border: 4px solid var(--background);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-foreground);
  z-index: 2;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
}
@media (min-width: 768px) {
  .timeline-step:nth-child(odd) .timeline-icon { left: auto; right: -3rem; transform: translateX(50%); }
  .timeline-step:nth-child(even) .timeline-icon { left: 0; transform: translateX(-50%); }
}
.timeline-content {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.timeline-step:hover .timeline-content {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-5px);
  border-color: rgba(212,175,55,0.3);
}
.timeline-content h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--primary); }
.timeline-content p { color: var(--muted-foreground); line-height: 1.6; }

/* Dashboard Estadísticas */
.vip-stats-section {
  background: var(--primary-dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.vip-stats-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .vip-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.vip-stat {
  text-align: center;
  color: #fff;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(212,175,55,0.4);
}
.stat-number span { font-size: 2rem; color: #fff; }
.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* CTA VIP */
.vip-cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  padding: 8rem 0;
  text-align: center;
  color: #fff;
  position: relative;
}
.vip-cta-content h2 { color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }

/* ============ Animaciones ============ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease-out, transform .8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============ Obamacare Page Redesign ============ */
.oba-section {
  position: relative; overflow: hidden; background: linear-gradient(to bottom, #050b14 0%, #050b14 80%, var(--primary) 100%); color: #fff;
  padding-top: 8rem; padding-bottom: 6rem;
}
.oba-ambient { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.oba-orb { position: absolute; border-radius: 50%; filter: blur(100px); animation: floatOrb 20s ease-in-out infinite alternate; }
.oba-orb-1 { width: 60vw; height: 60vw; background: rgba(10,61,145,.4); top: -20%; left: -20%; }
.oba-orb-2 { width: 50vw; height: 50vw; background: rgba(212,175,55,.15); bottom: -10%; right: -10%; animation-delay: -10s; }
.oba-layout { position: relative; z-index: 1; display: grid; gap: 3rem; align-items: flex-start; max-width: 1200px; margin: 0 auto; }
@media (min-width: 1024px) {
  .oba-layout { grid-template-columns: 340px 1fr; gap: 4rem; }
  .oba-video-col { position: sticky; top: 120px; }
}
.oba-glass-card {
  background: rgba(255,255,255,.04); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 1.5rem; padding: 2.5rem; margin-bottom: 2rem;
  box-shadow: 0 25px 50px rgba(0,0,0,.3);
}
.oba-glass-card h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; line-height: 1.2; color: #fff; }
.oba-glass-card h2 { font-size: 1.75rem; margin-bottom: 1rem; margin-top: 2rem; color: #fff; }
.oba-glass-card p { color: rgba(255,255,255,.8); line-height: 1.8; margin-bottom: 1.25rem; font-size: 1.05rem; }
.oba-glass-card .eyebrow { color: var(--gold); }
@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 10%) scale(1.1); }
  100% { transform: translate(-5%, -5%) scale(0.95); }
}

/* ============ Aliados / Partners ============ */
.partners-section {
  background: var(--muted);
  padding: 5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partners-section .section-head {
  margin-bottom: 3rem;
}
.partners-category {
  margin-bottom: 2.5rem;
}
.partners-category-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.marquee-container {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  background: transparent;
  padding: 1rem 0;
}
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--muted) 0%, transparent 100%);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--muted) 0%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-content {
  display: flex;
  gap: 2rem;
  padding-right: 2rem;
}
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}
.partner-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(26,37,64,.04);
  border: 1px solid rgba(26,37,64,.06);
  height: 100px;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .partner-card { height: 120px; width: 250px; padding: 1.25rem; }
}
.partner-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(10,61,145,.15);
  border-color: rgba(212,175,55,.4);
  z-index: 10;
  position: relative;
}
.partner-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

/* Modificador para categorías con logos que requieren verse más grandes */
.category-lg .partner-card {
  height: 120px;
  width: 240px;
  padding: 0.75rem;
}
@media (min-width: 768px) {
  .category-lg .partner-card {
    height: 140px;
    width: 280px;
    padding: 1rem;
  }
}
.category-lg .partner-logo {
  transform: scale(1.1); /* Ligero aumento extra para aprovechar el padding reducido */
}

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

/* ============ PLANES PRIVADOS PAGE ============ */
.pe-hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(to bottom, #f8f9fc 0%, #fff 100%);
}
.pe-subtitle {
  font-size: 1.15rem;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.pe-text {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.pe-text p { margin-bottom: 1rem; }
.pe-cta { margin-top: 2rem; }

.pe-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}
.pe-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.pe-glass-panel {
  position: absolute;
  bottom: 2rem;
  left: -2rem; /* Pull out slightly on desktop if possible, or stick to left/bottom */
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
  .pe-glass-panel { left: 1rem; right: 1rem; bottom: 1rem; }
}
.pe-glass-panel [data-lucide] {
  color: var(--gold);
  width: 2rem;
  height: 2rem;
}
.pe-glass-panel strong { display: block; color: var(--primary-dark); font-size: 1rem; }
.pe-glass-panel span { color: var(--muted-foreground); font-size: 0.85rem; }

.pe-benefits {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.pe-section-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 3rem;
}
.pe-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .pe-benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .pe-benefits-grid { grid-template-columns: repeat(6, 1fr); }
}
.pe-benefit-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(26,37,64,.04);
  border: 1px solid rgba(26,37,64,.06);
  transition: var(--transition);
}
.pe-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(10,61,145,.1);
  border-color: rgba(212,175,55,.3);
}
.pe-b-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 61, 145, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
}
.pe-benefit-card:hover .pe-b-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}
.pe-benefit-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--foreground);
  margin: 0;
  line-height: 1.4;
}

.pe-logos {
  padding: 4rem 0 5rem;
  background: var(--background);
}
.pe-logos-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
}

/* ============================================
   TRADUCCIÓN DE GOOGLE (CUSTOM FLAGS)
   ============================================ */
.lang-switch {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-right: 1.5rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: var(--transition);
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-btn:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.lang-btn.active-lang {
  opacity: 1;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.lang-btn img {
  border-radius: 2px;
  width: 20px;
  height: 15px;
  object-fit: cover;
}

/* Ocultar barra superior de Google Translate y tooltips de forma estricta */
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
.skiptranslate > iframe.skiptranslate,
#goog-gt-tt {
  display: none !important;
  visibility: hidden !important;
}
body { 
  top: 0px !important; 
  position: static !important; 
}
#google_translate_element { display: none !important; }
.goog-tooltip { display: none !important; }
.goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background-color: transparent !important; border: none !important; box-shadow: none !important; }

/* En versión con fondo claro (subpáginas) los botones cambian */
.navbar.scrolled .lang-btn, .navbar:not(.scrolled) .lang-btn {
  /* En el header original las letras son oscuras si no hay header dark */
}
.vip-page .navbar .lang-btn {
  border-color: rgba(26, 37, 64, 0.2);
}
.vip-page .navbar.scrolled .lang-btn {
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .lang-switch {
    margin: 1rem 0;
    justify-content: center;
  }
}
