/* ==========================================================================
   MONICA LLACH Y CIA LTDA. — DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-primary: #FAF5EE;
  --bg-secondary: #F4ECE1;
  --bg-surface: #FFFFFF;
  --bg-navy-dark: #00132C;
  --bg-navy-blue: #052149;
  --bg-navy-card: #082959;
  --bg-footer: #14171C;

  /* Gold Accents */
  --gold-primary: #C9994F;
  --gold-hover: #B8883E;
  --gold-light: #DFB773;
  --gold-dark: #9E7432;
  --gold-subtle: rgba(201, 153, 79, 0.12);
  --gold-border: rgba(201, 153, 79, 0.35);
  --gold-gradient: linear-gradient(135deg, #D6A85D 0%, #C49448 50%, #B07F33 100%);
  --gold-glow: 0 8px 24px rgba(201, 153, 79, 0.28);

  /* Typography Colors */
  --text-dark: #1A1F26;
  --text-body: #3E4551;
  --text-muted: #6B7280;
  --text-light: #F9FAFB;
  --text-light-muted: #CBD5E1;

  /* Borders & Shadows */
  --border-light: #E8DECF;
  --border-subtle: rgba(0, 0, 0, 0.07);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 12px 30px rgba(10, 25, 47, 0.07);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad-y: clamp(4rem, 7vw, 6.5rem);
  --container-max: 1240px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

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

/* --------------------------------------------------------------------------
   3. Typography & Section Headers
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, .serif-font {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.25;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.85rem;
}

.section-tag.tag-gold {
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.section-title.title-light {
  color: #FFFFFF;
}

.section-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

.header-accent-line {
  width: 48px;
  height: 2px;
  background-color: var(--gold-primary);
  margin: 0 auto 1.25rem auto;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   4. Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 1.85rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  user-select: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #171717;
  border-color: #C09245;
  box-shadow: 0 4px 14px rgba(201, 153, 79, 0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E0B46D 0%, #C9994F 50%, #B88538 100%);
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
  color: #000;
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.05rem 2.5rem;
  font-size: 0.9375rem;
}

.btn-full {
  width: 100%;
}

.arrow-icon {
  display: inline-block;
  font-size: 1.1em;
  transition: transform var(--transition-fast);
}

.btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   5. Site Header & Sticky Navbar
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background-color: rgba(250, 245, 238, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.85rem var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-mark {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  position: relative;
}

.brand-logo-mark::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: -3px;
  width: 6px;
  height: 6px;
  background-color: var(--gold-primary);
  border-radius: 50%;
}

.brand-divider {
  width: 1.5px;
  height: 38px;
  background-color: #D6C8B5;
}

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

.brand-name {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  white-space: nowrap;
}

.brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 1px;
}

/* Nav Links */
.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.25vw, 1.6rem);
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header {
  padding: 0.7rem 1.35rem;
  font-size: 0.8125rem;
  white-space: nowrap;
  letter-spacing: 0.04em;
  font-weight: 700;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
}

.hamburger-bar {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Hamburger morph to X when active */
.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.no-scroll {
  overflow: hidden;
}

.mobile-drawer {
  display: none;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem var(--container-pad);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* On mobile and tablet, display drawer when opened or activated, and switch header to toggle */
@media (max-width: 992px) {
  .main-nav,
  .btn-header {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .mobile-drawer.open,
  .mobile-drawer.active {
    display: block !important;
  }
}

/* CRITICAL FIX: On desktop (> 992px), mobile drawer MUST NEVER display even if class is retained */
@media (min-width: 993px) {
  .mobile-drawer,
  .mobile-drawer.open,
  .mobile-drawer.active {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    pointer-events: none !important;
    overflow: hidden !important;
  }

  .mobile-menu-toggle {
    display: none !important;
  }

  .main-nav {
    display: flex !important;
  }

  .btn-header {
    display: inline-flex !important;
  }
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  display: block;
  padding: 0.4rem 0;
}

.mobile-drawer-cta {
  margin-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   6. Hero Section (Full-Bleed Background Slider)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   6. Hero Section (Full-Bleed Background Slider with Dark Vignette)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0E1116;
  padding: 0;
}

.hero-slider {
  position: relative;
  min-height: 640px;
  height: clamp(620px, 82vh, 780px);
  width: 100%;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

/* Background image layer covering the entire slide with Ultra-HD clarity */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1.03);
}

.slide-bg-panther .hero-slide-bg {
  background-position: 85% center;
}

.slide-bg-family .hero-slide-bg {
  background-position: right center;
}

.slide-bg-avatar .hero-slide-bg {
  background-position: right center;
}

/* Dark Cinematic Vignette Overlay (eliminates all milky white fog) */
.hero-overlay-dark-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    /* Left-side dark gradient to ensure text readability */
    linear-gradient(90deg, 
      rgba(10, 13, 18, 0.90) 0%, 
      rgba(10, 13, 18, 0.76) 36%, 
      rgba(10, 13, 18, 0.40) 56%, 
      rgba(10, 13, 18, 0.06) 74%, 
      transparent 100%),
    /* Subtle cinematic outer edge vignette */
    radial-gradient(ellipse at 70% 50%, transparent 48%, rgba(5, 7, 10, 0.6) 100%),
    /* Bottom grounding shadow for navigation controls */
    linear-gradient(0deg, rgba(8, 10, 14, 0.65) 0%, transparent 24%);
}

.hero-container-single {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.hero-content {
  max-width: 620px;
  z-index: 3;
}

.eyebrow-badge {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.eyebrow-gold {
  color: #E6BC7E !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-title {
  font-size: clamp(2.5rem, 4.2vw, 3.85rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  display: block;
}

.hero-title-white,
.hero-title-white span {
  color: #FFFFFF !important;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.hero-description {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: #F1F3F5;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 2.25rem;
}

.hero-desc-white {
  color: #F1F3F5 !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.btn-gold {
  background: linear-gradient(135deg, #DFB773 0%, #C39243 100%);
  color: #121418 !important;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 16px rgba(195, 146, 67, 0.4);
  transition: all var(--transition-normal);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E8C488 0%, #D19F52 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(195, 146, 67, 0.55);
}

.btn-outline-hero {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-normal);
}

.btn-outline-hero:hover {
  background: rgba(223, 183, 115, 0.22);
  border-color: var(--gold-light);
  color: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 16px rgba(223, 183, 115, 0.3);
}

/* 3 Feature Badges row from Image 5 */
.hero-features-row {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 160px;
  min-width: 150px;
}

.feature-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(223, 183, 115, 0.6);
  background: rgba(223, 183, 115, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(223, 183, 115, 0.2);
}

.feature-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.feature-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #F3F4F6;
  line-height: 1.35;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  z-index: 10;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 18, 24, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
}

.slider-arrow:hover {
  background: var(--gold-primary);
  color: #121418;
  border-color: var(--gold-primary);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(201, 153, 79, 0.6);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.dot.active {
  width: 30px;
  background: var(--gold-light);
  box-shadow: 0 0 12px rgba(224, 180, 109, 0.75);
}

/* --------------------------------------------------------------------------
   7. Aseguradoras Aliadas (Página 3 - Cuadrícula con Divisores y Logos Transparentes)
   -------------------------------------------------------------------------- */
.insurers-section {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.insurers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: transparent;
  max-width: 1140px;
  margin: 0 auto;
}

.insurer-card {
  background-color: transparent;
  border: none;
  border-right: 1px solid #E6DBCF;
  border-bottom: 1px solid #E6DBCF;
  border-radius: 0;
  padding: 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  transition: background-color var(--transition-normal);
  box-shadow: none;
}

/* Remove right border on 4th column */
.insurer-card:nth-child(4n) {
  border-right: none;
}

/* Remove bottom border on last row (items 5 to 8) */
.insurer-card:nth-child(n+5) {
  border-bottom: none;
}

.insurer-card:hover {
  background-color: rgba(201, 153, 79, 0.04);
  transform: none;
  box-shadow: none;
}

.insurer-logo-box {
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.insurer-logo {
  max-width: 180px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-normal);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.04));
}

.insurer-logo.insurer-logo-square {
  max-height: 50px;
  max-width: 70px;
}

.insurer-card:hover .insurer-logo {
  transform: scale(1.08);
}

.insurer-assistance {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.875rem;
  margin-top: 1.25rem;
  padding-top: 0;
  border-top: none;
  width: 100%;
  justify-content: center;
}

.asist-label {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.875rem;
}

.asist-phone {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.asist-phone:hover {
  color: var(--gold-primary);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   8. Diferencial (Página 4)
   -------------------------------------------------------------------------- */
.differential-section {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.differential-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.differential-lead {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 2.75rem;
  max-width: 580px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.25rem;
}

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

.pillar-number-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.pillar-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.pillar-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 153, 79, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.pillar-icon-circle svg {
  width: 22px;
  height: 22px;
}

.pillar-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
  line-height: 1.35;
}

.pillar-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.differential-right {
  position: relative;
  max-width: 470px;
  margin: 0 auto;
  width: 100%;
}

.differential-right::before {
  content: '';
  position: absolute;
  top: 18px;
  right: -16px;
  bottom: -18px;
  left: 16px;
  border: 2px solid rgba(201, 153, 79, 0.35);
  border-radius: 22px;
  pointer-events: none;
  z-index: 0;
  transition: transform var(--transition-normal);
}

.differential-right:hover::before {
  transform: translate(4px, 4px);
}

.team-card-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px -12px rgba(5, 33, 73, 0.18), 0 0 0 1px rgba(201, 153, 79, 0.2);
  z-index: 1;
  background-color: #FAF5EE;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.team-card-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -14px rgba(5, 33, 73, 0.24), 0 0 0 1px rgba(201, 153, 79, 0.35);
}



.team-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.team-card-frame:hover .team-img {
  transform: scale(1.03);
}

.commitment-seal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(201, 153, 79, 0.25);
  box-shadow: 0 -8px 24px rgba(5, 33, 73, 0.06);
}

.seal-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 153, 79, 0.18), rgba(201, 153, 79, 0.06));
  border: 1px solid rgba(201, 153, 79, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(201, 153, 79, 0.15);
}

.seal-icon-box svg {
  width: 22px;
  height: 22px;
}

.seal-content {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.seal-text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--navy-primary);
  line-height: 1.35;
  text-transform: uppercase;
}

.seal-subtext {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  transition: opacity 0.25s ease;
}

/* --------------------------------------------------------------------------
   9. Cómo Funciona (Página 5)
   -------------------------------------------------------------------------- */
.how-it-works-section {
  padding: var(--section-pad-y) 0;
  background: radial-gradient(ellipse at center, #0B2B5C 0%, var(--bg-navy-blue) 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(201, 153, 79, 0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.25;
  pointer-events: none;
}

.timeline-wrapper {
  position: relative;
  margin: 4rem 0 3.5rem 0;
}

.timeline-line {
  position: absolute;
  top: 42px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(201, 153, 79, 0.6) 20%, 
    rgba(201, 153, 79, 0.8) 50%, 
    rgba(201, 153, 79, 0.6) 80%, 
    transparent 100%);
  z-index: 1;
}

.steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-icon-outer {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #061B3B;
  border: 1px solid rgba(201, 153, 79, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(201, 153, 79, 0.2);
  transition: all var(--transition-normal);
}

.step-card:hover .step-icon-outer {
  transform: scale(1.1);
  border-color: var(--gold-light);
  box-shadow: 0 0 30px rgba(201, 153, 79, 0.4);
}

.step-icon-inner {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(201, 153, 79, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.step-icon-inner svg {
  width: 28px;
  height: 28px;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--text-light-muted);
  line-height: 1.55;
  max-width: 240px;
}

.timeline-cta {
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   10. Acompañamiento (Página 6)
   -------------------------------------------------------------------------- */
.accompaniment-section {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.accompaniment-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5.5rem);
}

.accompaniment-photo-box .photo-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.accompaniment-desc {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.accompaniment-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2.5rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.check-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.check-icon svg {
  width: 18px;
  height: 18px;
}

.check-text {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   11. Soluciones Empresariales (Página 7)
   -------------------------------------------------------------------------- */
.business-solutions-section {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-navy-dark);
  color: #FFFFFF;
}

.business-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
}

.business-main-card {
  background-color: #031835;
  border: 1px solid rgba(201, 153, 79, 0.3);
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 3.25rem);
  box-shadow: var(--shadow-lg);
}

.business-title {
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  color: #FFFFFF;
  margin-bottom: 1.15rem;
}

.business-desc {
  font-size: 1rem;
  color: var(--text-light-muted);
  line-height: 1.65;
  margin-bottom: 2.75rem;
  max-width: 580px;
}

.business-specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1rem;
}

.specialty-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.specialty-item:hover {
  background: rgba(201, 153, 79, 0.08);
  transform: translateY(-3px);
}

.specialty-icon {
  width: 54px;
  height: 54px;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.specialty-icon svg {
  width: 32px;
  height: 32px;
}

.specialty-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Right Sidebar: Brand Card & Colaboradores */
.business-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.business-brand-card {
  background: linear-gradient(145deg, #031A3C 0%, #010F24 100%);
  border: 1px solid rgba(201, 153, 79, 0.4);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.brand-monogram {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 0.75rem;
  position: relative;
}

.brand-corp-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.brand-corp-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.brand-corp-divider {
  width: 48px;
  height: 1.5px;
  background-color: var(--gold-primary);
  margin-bottom: 1.25rem;
}

.brand-slogan {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-style: italic;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.brand-values {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.val-dot {
  opacity: 0.5;
}

.colaboradores-card {
  background: #031835;
  border: 1px solid rgba(201, 153, 79, 0.3);
  border-radius: 12px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.colab-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201, 153, 79, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 1.15rem;
}

.colab-icon-circle svg {
  width: 24px;
  height: 24px;
}

.colab-title {
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.colab-text {
  font-size: 0.9375rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.colab-btn-wrap {
  width: 100%;
}

/* --------------------------------------------------------------------------
   12. Nosotros / Historia (Página 8)
   -------------------------------------------------------------------------- */
.about-section {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.about-top-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 4.5rem;
}

.about-photo-wrapper {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.about-photo-wrapper::before {
  content: '';
  position: absolute;
  top: 18px;
  left: -16px;
  bottom: -18px;
  right: 16px;
  border: 2px solid rgba(201, 153, 79, 0.35);
  border-radius: 22px;
  pointer-events: none;
  z-index: 0;
  transition: transform var(--transition-normal);
}

.about-photo-wrapper:hover::before {
  transform: translate(-4px, 4px);
}

.about-photo-wrapper .monica-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px -12px rgba(5, 33, 73, 0.18), 0 0 0 1px rgba(201, 153, 79, 0.2);
  z-index: 1;
  background-color: #FAF5EE;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.about-photo-wrapper .monica-img-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -14px rgba(5, 33, 73, 0.24), 0 0 0 1px rgba(201, 153, 79, 0.35);
}

.monica-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-photo-wrapper:hover .monica-img {
  transform: scale(1.03);
}

.monica-floating-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 153, 79, 0.3);
  box-shadow: 0 12px 28px rgba(5, 33, 73, 0.12);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.m-years {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.m-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* 3 Core Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

.value-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}

.value-icon-circle svg {
  width: 26px;
  height: 26px;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.value-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. Formulario & Contacto (Página 9)
   -------------------------------------------------------------------------- */
.contact-section {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

.quote-form-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-card);
}

/* Tabs Switcher */
.form-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.form-tabs {
  display: inline-flex;
  background-color: #F5EEE4;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  gap: 4px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.65rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn svg {
  width: 18px;
  height: 18px;
}

.tab-btn.active {
  background: var(--bg-surface);
  color: var(--text-dark);
  border-color: var(--gold-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Inputs & Form Rows */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.col-4 {
  flex: 1 1 calc(33.333% - 0.85rem);
  min-width: 240px;
}

.col-8 {
  flex: 2 1 calc(66.666% - 0.85rem);
  min-width: 280px;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}

.form-label .required {
  color: #C0392B;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: #A0A6B2;
  pointer-events: none;
  transition: color var(--transition-fast);
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  background-color: #FDFBF8;
  border: 1px solid #DED6CA;
  border-radius: 6px;
  font-size: 0.9375rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.form-input::placeholder {
  color: #9CA3AF;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold-primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(201, 153, 79, 0.18);
}

.input-with-icon:focus-within .field-icon {
  color: var(--gold-primary);
}

.select-wrapper {
  position: relative;
}

.form-select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}

.select-chevron {
  position: absolute;
  right: 14px;
  width: 18px;
  height: 18px;
  color: #717A8A;
  pointer-events: none;
}

.field-error {
  font-size: 0.75rem;
  color: #C0392B;
  margin-top: 0.25rem;
  min-height: 16px;
}

/* Agreement & Checkbox */
.form-agreement {
  margin-top: 0.25rem;
}

.checkbox-container {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  user-select: none;
  font-size: 0.875rem;
  color: var(--text-body);
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  background-color: #FDFBF8;
  border: 1px solid #DED6CA;
  border-radius: 4px;
  margin-right: 0.75rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--gold-primary);
  border-color: var(--gold-primary);
}

.checkbox-container input:checked ~ .checkmark::after {
  content: '✓';
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
}

.legal-link-btn {
  background: none;
  border: none;
  color: var(--gold-dark);
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
  padding: 0;
}

/* Form Action Buttons */
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  width: 100%;
}

.btn-submit {
  width: 100%;
  padding: 1.05rem 2rem;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  border-radius: 6px;
}

.action-or {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.btn-whatsapp-direct {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: #FFFFFF;
  color: #128C7E;
  border: 1px solid #C1E1DC;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 0.95rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-whatsapp-direct:hover {
  background-color: #E8F7F4;
  border-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(18, 140, 126, 0.15);
}

.whatsapp-btn-icon {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   14. FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
  padding: var(--section-pad-y) 0;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-light);
}

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

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.faq-item[open] {
  border-color: var(--gold-primary);
}

.faq-question {
  padding: 1.35rem 1.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.75rem 1.5rem 1.75rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   15. Site Footer (Página 9)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-footer);
  color: #FFFFFF;
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem 0;
  border-top: 1px solid #292D34;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.1fr 1.3fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 3.5rem;
}

.footer-col-brand {
  padding-right: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.f-monogram {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.f-brand-texts {
  display: flex;
  flex-direction: column;
}

.f-brand-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.f-brand-sub {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.footer-bio {
  font-size: 0.875rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-anniversary-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 153, 79, 0.35);
  border-radius: 6px;
}

.badge-25-big {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.badge-25-sub {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: inline-block;
  vertical-align: super;
}

.badge-v-bar {
  width: 1px;
  height: 32px;
  background: rgba(201, 153, 79, 0.4);
}

.badge-motto {
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  color: #FFFFFF;
  line-height: 1.25;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.35rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link,
.footer-link-btn {
  font-size: 0.875rem;
  color: #9CA3AF;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
  text-align: left;
}

.f-chevron {
  color: var(--gold-primary);
  font-size: 1.1em;
  transition: transform var(--transition-fast);
}

.footer-link:hover,
.footer-link-btn:hover {
  color: #FFFFFF;
}

.footer-link:hover .f-chevron,
.footer-link-btn:hover .f-chevron {
  transform: translateX(3px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: #9CA3AF;
}

.f-icon {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.footer-contact-list a:hover {
  color: #FFFFFF;
}

.footer-bottom-bar {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.copyright-text {
  font-size: 0.8125rem;
  color: #6B7280;
}

/* --------------------------------------------------------------------------
   16. Floating WhatsApp Button
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 52px;
  padding: 0 20px 0 16px;
  background-color: #25D366;
  color: #FFFFFF !important;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  cursor: pointer;
  text-decoration: none !important;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  fill: currentColor;
}

.whatsapp-float-text {
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #FFFFFF !important;
}

.whatsapp-tooltip {
  display: none;
}

/* --------------------------------------------------------------------------
   17. Modal & Toast Notifications
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg-surface);
  border-radius: 12px;
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.open .modal-dialog {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.85rem;
}

.modal-title {
  font-size: 1.35rem;
  color: var(--text-dark);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modal-body h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 0.5rem;
}

.modal-body ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.modal-footer {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  background: #111827;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--gold-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3000;
  transform: translateX(120%);
  transition: transform var(--transition-normal);
}

.toast-notification.show {
  transform: translateX(0);
}

.toast-icon {
  width: 28px;
  height: 28px;
  background: var(--gold-primary);
  color: #000;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-title {
  font-weight: 700;
  font-size: 0.9375rem;
}

.toast-text {
  font-size: 0.8125rem;
  color: #D1D5DB;
}

/* --------------------------------------------------------------------------
   18. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-wrapper {
    margin: 1.5rem auto 0 auto;
  }

  .hero-features-row {
    justify-content: center;
  }

  .avatar-circular-stage {
    margin-top: 2.5rem;
  }

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

  .insurer-card {
    border-right: 1px solid #E6DBCF;
    border-bottom: 1px solid #E6DBCF;
  }

  .insurer-card:nth-child(2n) {
    border-right: none;
  }

  .insurer-card:nth-child(n+7) {
    border-bottom: none;
  }

  .differential-grid {
    grid-template-columns: 1fr;
  }

  .differential-right {
    max-width: 600px;
    margin: 0 auto;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .business-specialties-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-top-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }

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

  .footer-col-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0;
    margin: 0;
    background-color: #0E1116;
  }

  .hero-slider {
    position: relative;
    width: 100%;
    height: 620px;
    min-height: 620px;
    max-height: 620px;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 3rem 1.25rem 4rem 1.25rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
  }

  .hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
  }

  /* Centered focal points for all 3 hero background images */
  .slide-bg-family .hero-slide-bg {
    background-position: 60% center;
  }

  .slide-bg-panther .hero-slide-bg {
    background-position: 70% center;
  }

  .slide-bg-avatar .hero-slide-bg {
    background-position: 75% center;
  }

  .hero-overlay-dark-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, 
      rgba(10, 13, 18, 0.72) 0%, 
      rgba(10, 13, 18, 0.85) 45%, 
      rgba(10, 13, 18, 0.94) 100%);
  }

  .hero-container,
  .hero-container-single {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 440px;
    padding: 0;
    margin: 0 auto;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-content .eyebrow-badge {
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.8rem;
    margin-bottom: 0.65rem;
  }

  .hero-title {
    font-size: clamp(1.65rem, 6.2vw, 2.15rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0.65rem;
    max-width: 360px;
  }

  .hero-title br {
    display: none;
  }

  .hero-description {
    font-size: 0.875rem;
    line-height: 1.45;
    color: #D1D5DB;
    max-width: 340px;
    margin: 0 auto 1.15rem auto;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 0.6rem;
    margin: 0 auto;
  }

  .hero-buttons .btn {
    width: 100%;
    height: 44px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    border-radius: 8px;
    box-sizing: border-box;
    white-space: nowrap;
  }

  /* Slide 3 Features Row - Compact Horizontal layout that prevents expansion */
  .hero-features-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.65rem;
    width: 100%;
    max-width: 340px;
    margin: 0.85rem auto 0 auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    width: auto;
    min-width: 0;
    flex: none;
    text-align: left;
  }

  .feature-icon-wrap,
  .feature-icon-circle {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: rgba(201, 153, 79, 0.2);
    border: 1px solid rgba(201, 153, 79, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
  }

  .feature-icon-wrap svg,
  .feature-icon-circle svg {
    width: 12px;
    height: 12px;
  }

  .feature-text,
  .feature-label {
    font-size: 0.72rem;
    line-height: 1.2;
    color: #E2E8F0;
    white-space: nowrap;
  }

  .feature-text br,
  .feature-label br {
    display: none;
  }

  .slider-controls {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    z-index: 10;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
  }

  .slider-arrow svg {
    width: 14px;
    height: 14px;
  }

  .slider-dots {
    gap: 0.5rem;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 22px;
  }

  /* Header & Navigation */
  .main-nav,
  .btn-header {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-container {
    padding: 0.75rem var(--container-pad);
  }

  .brand-logo-mark {
    font-size: 1.85rem;
  }

  .brand-name {
    font-size: 0.85rem;
  }

  .brand-tagline {
    font-size: 0.5625rem;
  }

  /* Section Headings & General Spacing */
  :root {
    --section-pad-y: 3.5rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 5.5vw, 2.15rem);
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 2.25rem;
  }

  /* 3. Aseguradoras Grid (Section 3) */
  .insurers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insurer-card {
    padding: 1.25rem 0.75rem;
    min-height: 140px;
    border-right: 1px solid #E6DBCF;
    border-bottom: 1px solid #E6DBCF;
  }

  .insurer-card:nth-child(2n) {
    border-right: none;
  }

  .insurer-card:nth-child(n+7) {
    border-bottom: none;
  }

  .insurer-logo-box {
    height: 48px;
    padding: 0.25rem;
  }

  .insurer-logo {
    max-width: 125px;
    max-height: 42px;
  }

  .insurer-logo.insurer-logo-square {
    max-height: 38px;
    max-width: 55px;
  }

  .insurer-assistance {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.15rem;
    margin-top: 0.85rem;
  }

  .assist-label {
    font-size: 0.625rem;
    letter-spacing: 0.05em;
  }

  .assist-number {
    font-size: 0.75rem;
    font-weight: 700;
  }

  /* 4. Diferencial Section (Section 4) */
  .differential-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .differential-right {
    max-width: 100%;
    margin: 0 auto;
  }

  .differential-right::before {
    display: none;
  }

  .team-card-frame {
    border-radius: 16px;
  }

  .team-img {
    aspect-ratio: 3 / 4;
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: cover;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pillar-header {
    margin-bottom: 0.5rem;
  }

  .pillar-num {
    font-size: 1.85rem;
  }

  .pillar-icon-circle {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .pillar-icon-circle svg {
    width: 18px;
    height: 18px;
  }

  .pillar-title {
    font-size: 1.0625rem;
  }

  .pillar-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .commitment-seal {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .seal-icon-box {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .seal-icon-box svg {
    width: 16px;
    height: 16px;
  }

  .seal-text {
    font-size: 0.75rem;
    font-weight: 700;
  }

  .seal-subtext {
    font-size: 0.625rem;
  }


  /* 5. Cómo Funciona (Section 5) */
  .timeline-wrapper {
    margin: 2.25rem 0 1.75rem 0;
  }

  .timeline-line {
    display: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .step-icon-outer {
    width: 72px;
    height: 72px;
    margin-bottom: 1rem;
  }

  .step-icon-inner {
    width: 56px;
    height: 56px;
  }

  .step-icon-inner svg {
    width: 24px;
    height: 24px;
  }

  .step-number {
    font-size: 0.8125rem;
  }

  .step-title {
    font-size: 1.0625rem;
  }

  .step-desc {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .how-it-works-btn {
    margin-top: 1.75rem;
  }

  .how-it-works-btn .btn {
    width: 100%;
    max-width: 300px;
  }

  /* 6. Acompañamiento Permanente (Section 6) */
  .accompaniment-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .accompaniment-photo-box {
    max-width: 100%;
  }

  .accompaniment-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
  }

  .accompaniment-desc {
    font-size: 0.9375rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .accompaniment-checklist {
    gap: 0.85rem;
    margin-bottom: 1.75rem;
  }

  .checklist-item {
    gap: 0.75rem;
  }

  .check-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .check-icon svg {
    width: 15px;
    height: 15px;
  }

  .check-text {
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .accompaniment-btn .btn {
    width: 100%;
    max-width: 300px;
  }

  /* 7. Soluciones Empresariales (Section 7) */
  .business-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .business-main-card {
    padding: 1.75rem 1.25rem;
    border-radius: 12px;
  }

  .business-title {
    font-size: clamp(1.65rem, 5.5vw, 2.15rem);
    margin-bottom: 0.85rem;
  }

  .business-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
  }

  .business-specialties-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.5rem;
  }

  .specialty-item {
    padding: 0.75rem 0.25rem;
  }

  .specialty-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0.5rem;
  }

  .specialty-icon svg {
    width: 26px;
    height: 26px;
  }

  .specialty-label {
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
  }

  .business-sidebar {
    gap: 1.5rem;
  }

  .business-brand-card {
    padding: 2rem 1.25rem;
    border-radius: 12px;
  }

  .brand-monogram {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
  }

  .brand-corp-name {
    font-size: 1.1rem;
  }

  .brand-slogan {
    font-size: 0.9375rem;
  }

  .business-collab-card {
    padding: 1.75rem 1.25rem;
    border-radius: 12px;
  }

  .collab-icon-box {
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
  }

  .collab-title {
    font-size: 1.15rem;
  }

  .collab-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .business-collab-card .btn {
    width: 100%;
    max-width: 280px;
  }

  /* 8. Nosotros / Historia (Section 8) */
  .about-top-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-bottom: 2.75rem;
  }

  .about-photo-wrapper {
    max-width: 100%;
    margin: 0 auto;
  }

  .about-photo-wrapper::before {
    display: none;
  }

  .about-photo-wrapper .monica-img-frame {
    border-radius: 16px;
  }

  .monica-img {
    aspect-ratio: 3 / 4;
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: cover;
  }

  .monica-floating-badge {
    bottom: 12px;
    right: 12px;
    padding: 0.6rem 0.9rem;
    border-radius: 10px;
    gap: 0.5rem;
  }

  .m-years {
    font-size: 1.5rem;
  }

  .m-label {
    font-size: 0.65rem;
  }

  .about-text-content {
    text-align: left;
  }

  .about-paragraphs {
    gap: 1rem;
  }

  .about-paragraphs p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .value-card {
    padding: 1.75rem 1.25rem;
  }

  .value-icon-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .value-icon-circle svg {
    width: 22px;
    height: 22px;
  }

  .value-title {
    font-size: 1.15rem;
  }

  .value-desc {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  /* 9. FAQ Accordion */
  .faq-accordion-list {
    gap: 0.75rem;
  }

  .faq-question {
    padding: 1rem 1.15rem;
    font-size: 0.9375rem;
    line-height: 1.35;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
    margin-left: 0.75rem;
  }

  .faq-answer {
    padding: 0 1.15rem 1.15rem 1.15rem;
    font-size: 0.875rem;
    line-height: 1.55;
  }

  /* 10. Cotizador Formulario (Section 9) */
  .quote-form-card {
    padding: 1.75rem 1.15rem;
    border-radius: 12px;
  }

  .form-tabs-container {
    margin-bottom: 1.75rem;
    width: 100%;
  }

  .form-tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }

  .tab-btn {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
  }

  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .col-4,
  .col-8 {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px !important;
    padding: 0.85rem 0.85rem 0.85rem 2.5rem;
  }

  .field-icon {
    left: 12px;
    width: 16px;
    height: 16px;
  }

  .select-chevron {
    right: 12px;
    width: 16px;
    height: 16px;
  }

  .form-agreement {
    margin-top: 0;
  }

  .checkbox-container {
    font-size: 0.8125rem;
    line-height: 1.4;
    align-items: flex-start;
  }

  .custom-checkbox {
    margin-top: 2px;
    flex-shrink: 0;
  }

  .form-submit-row {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .btn-submit,
  .btn-whatsapp-direct {
    width: 100%;
    height: 48px;
    font-size: 0.8125rem;
    justify-content: center;
    border-radius: 6px;
  }

  /* 11. Footer */
  .site-footer {
    padding: 3rem 0 1.5rem 0;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
    margin-bottom: 2rem;
  }

  .footer-col-brand {
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
  }

  .footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1.25rem;
  }

  .footer-col:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer-heading {
    font-size: 0.75rem;
    margin-bottom: 0.85rem;
  }

  .footer-links {
    gap: 0.65rem;
  }

  .footer-link,
  .footer-link-btn {
    font-size: 0.875rem;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  .footer-contact-list {
    gap: 0.75rem;
  }

  .footer-contact-list li {
    font-size: 0.875rem;
    min-height: 36px;
    display: flex;
    align-items: center;
  }

  .footer-bottom-bar {
    padding-top: 1.5rem;
    text-align: center;
  }

  .copyright-text {
    font-size: 0.75rem;
  }

  /* Floating WhatsApp Button & Modal */
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    height: 46px;
    padding: 0 16px 0 12px;
    font-size: 0.78rem;
    gap: 8px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  .modal-dialog {
    width: 92%;
    max-width: 480px;
    max-height: 85vh;
    margin: 1rem auto;
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }

  .modal-body {
    max-height: 55vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  :root {
    --container-pad: 1rem;
    --section-pad-y: 3rem;
  }

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

  .hero-slider {
    height: 590px;
    min-height: 590px;
    max-height: 590px;
  }

  .hero-slide {
    height: 100%;
    padding: 2.25rem 1rem 3.5rem 1rem;
  }

  .hero-buttons .btn {
    height: 44px;
    font-size: 0.75rem;
  }

  .insurer-card {
    padding: 1rem 0.5rem;
    min-height: 125px;
  }

  .insurer-logo {
    max-width: 105px;
    max-height: 36px;
  }

  .assist-number {
    font-size: 0.6875rem;
  }

  .quote-form-card {
    padding: 1.35rem 0.85rem;
  }
}

/* ==========================================================================
   Sección Noticias del Sector Asegurador (Fasecolda)
   ========================================================================== */
.fasecolda-noticias-section {
  position: relative;
  padding: clamp(4rem, 6.5vw, 6rem) 0;
  background-color: #06224B;
  background-image: 
    linear-gradient(135deg, rgba(6, 34, 75, 0.90) 0%, rgba(3, 20, 48, 0.94) 100%),
    url('../assets/noticias/fasecolda_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fasecolda-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  position: relative;
  z-index: 1;
}

.fasecolda-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  background: rgba(141, 198, 63, 0.18);
  border: 1px solid rgba(141, 198, 63, 0.45);
  border-radius: var(--radius-full);
  color: #B5E86E;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.95rem;
}

.fasecolda-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
  line-height: 1.15;
}

/* Two-tone accent bar from Fasecolda (lime green + cyan) */
.fasecolda-accent-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 4px;
  margin: 0 auto 1.25rem;
  border-radius: 2px;
  overflow: hidden;
}

.fasecolda-accent-bar .bar-green {
  width: 50%;
  height: 100%;
  background: #8DC63F;
}

.fasecolda-accent-bar .bar-cyan {
  width: 50%;
  height: 100%;
  background: #0CBCCC;
}

.fasecolda-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.fasecolda-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.2rem);
  position: relative;
  z-index: 1;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.fasecolda-card {
  background: #FFFFFF;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.fasecolda-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.38);
}

.fasecolda-card-imgwrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #E8EEF5;
}

.fasecolda-card-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fasecolda-card:hover .fasecolda-card-imgwrap img {
  transform: scale(1.05);
}

.fasecolda-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #8DC63F;
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
  letter-spacing: 0.02em;
  z-index: 2;
}

.fasecolda-card-body {
  padding: 1.5rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fasecolda-date {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #708090;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.fasecolda-date svg {
  color: #8DC63F;
  flex-shrink: 0;
}

.fasecolda-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0A2540;
  line-height: 1.42;
  margin-bottom: 1.4rem;
  flex-grow: 1;
  transition: color 0.2s ease;
}

.fasecolda-card:hover .fasecolda-card-title {
  color: #0066CC;
}

.fasecolda-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #0066CC;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.fasecolda-readmore svg {
  transition: transform 0.2s ease;
}

.fasecolda-card:hover .fasecolda-readmore {
  color: #004B99;
}

.fasecolda-card:hover .fasecolda-readmore svg {
  transform: translateX(4px);
}

.fasecolda-footer-action {
  text-align: center;
  position: relative;
  z-index: 1;
}

.btn-fasecolda-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.btn-fasecolda-more:hover {
  background: #FFFFFF;
  color: #06224B !important;
  border-color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

@media (max-width: 992px) {
  .fasecolda-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fasecolda-cards-grid {
    grid-template-columns: 1fr;
  }
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
