:root {
    --crimson: #612a37;
    --crimson-light: #9b1d42;
    --crimson-dark: #5a0f27;
    --off-white: #f7f5f3;
    --warm-white: #faf9f7;
    --charcoal: #1c1c1c;
    --gray-mid: #6b6b6b;
    --gray-light: #d4d0cc;
    --gold: #c9a96e;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.4rem 5vw;
    background: rgba(247, 245, 243, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-light);
  }

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

  .nav-monogram {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--crimson);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    
  }

  .nav-monogram svg { width: 24px; height: 24px; }

  .nav-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 600; letter-spacing: 0.05em;
    color: var(--charcoal);
    line-height: 1.1;
  }

  .nav-name span {
    display: block; font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem; font-weight: 500; letter-spacing: 0.18em;
    color: var(--crimson); text-transform: uppercase;
  }

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

  .nav-links a {
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gray-mid);
    text-decoration: none; transition: color 0.25s;
  }

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

  .nav-cta {
    background: var(--crimson) !important;
    color: white !important;
    padding: 0.55rem 1.2rem;
    border-radius: 2px;
    transition: background 0.25s !important;
  }

  .nav-cta:hover { background: var(--crimson-dark) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 10rem 5vw 6rem 8vw;
    position: relative; z-index: 2;
  }

  .hero-eyebrow {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--crimson);
    margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    font-weight: 300; line-height: 1.08;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
    opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
  }

  .hero-title strong {
    font-weight: 600; color: var(--crimson);
    font-style: italic;
  }

  .hero-sub {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gray-mid); margin-bottom: 2.5rem;
    opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero-desc {
    font-size: 0.95rem; font-weight: 300; line-height: 1.9;
    color: var(--gray-mid); max-width: 420px;
    margin-bottom: 3rem;
    opacity: 0; animation: fadeUp 0.8s 0.65s forwards;
  }

  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
  }

  .btn-primary {
    display: inline-block; text-decoration: none;
    background: var(--crimson); color: white;
    padding: 0.9rem 2.2rem;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid var(--crimson);
    transition: all 0.3s;
  }

  .btn-primary:hover {
    background: transparent; color: var(--crimson);
  }

  .btn-outline {
    display: inline-block; text-decoration: none;
    background: transparent; color: var(--charcoal);
    padding: 0.9rem 2.2rem;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid var(--charcoal);
    transition: all 0.3s;
  }

  .btn-outline:hover {
    background: var(--charcoal); color: white;
  }

  .hero-right {
    position: relative;
    background: var(--crimson);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }

  .hero-right::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.03) 40px,
      rgba(255,255,255,0.03) 80px
    );
  }

  .hero-graphic {
    position: relative; z-index: 2;
    opacity: 0; animation: fadeIn 1.2s 0.9s forwards;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
  }

  .hero-monogram-large {
    width: 250px; height: 250px;
    display: flex; align-items: center; justify-content: center;
    margin: 0;
  }

  .hero-monogram-large img {
    width: 250px; height: 250px;
    object-fit: cover; object-position: center top;
    border-radius: 4px; display: block;
  }

  .hero-tagline {
    text-align: center;
    font-size: 0.92rem; font-weight: 300; font-style: italic;
    color: rgba(255,255,255,0.85); line-height: 1.7;
    max-width: 280px;
  }

  /* decorative vertical line */
  .hero-divider {
    position: absolute; left: 50%; top: 0; bottom: 0;
    width: 1px; background: var(--gray-light);
    z-index: 3;
  }

  .stat {
    padding: 2.5rem 3rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
  }

  .stat:last-child { border-right: none; }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300;
    color: var(--gold); line-height: 1;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
  }

  /* ── SERVICES ── */
  .section {
    padding: 7rem 8vw;
  }

  .section-header {
    margin-bottom: 4rem;
  }

  .section-eyebrow {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--crimson);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; line-height: 1.15;
    color: var(--charcoal);
  }

  .section-title em { font-style: italic; color: var(--crimson); }

  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--gray-light);
  }

  .service-card {
    padding: 2.8rem 2.5rem;
    border-right: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    position: relative; overflow: hidden;
    transition: background 0.35s;
    cursor: default;
  }

  .service-card:hover { background: var(--off-white); }

  .service-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    height: 3px; width: 0; background: var(--crimson);
    transition: width 0.4s;
  }

  .service-card:hover::after { width: 100%; }

  .service-card:nth-child(3n) { border-right: none; }

  .service-icon {
    width: 48px; height: 48px; margin-bottom: 1.5rem;
    color: var(--crimson);
  }

  .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600;
    color: var(--charcoal); margin-bottom: 0.8rem;
  }

  .service-desc {
    font-size: 0.82rem; font-weight: 300; line-height: 1.8;
    color: var(--gray-mid);
  }

  /* ── WHY ME ── */
  .why-section {
    background: var(--off-white);
    padding: 7rem 8vw;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }

  .why-visual {
    position: relative;
  }

  .why-card {
    background: var(--crimson);
    padding: 3rem;
    position: relative; overflow: hidden;
  }

  .why-card::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 160px; height: 160px; border-radius: 50%;
    background: rgba(255,255,255,0.07);
  }

  .why-card-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-style: italic; font-weight: 300;
    color: white; line-height: 1.6; position: relative; z-index: 1;
  }

  .why-card-quote::before {
    content: '"';
    font-size: 5rem; color: rgba(255,255,255,0.2);
    font-family: 'Cormorant Garamond', serif;
    line-height: 0.5; display: block; margin-bottom: 1rem;
  }

  .why-accent {
    position: absolute; bottom: -20px; right: 2rem;
    width: 80px; height: 80px; border-radius: 50%;
    background: var(--charcoal);
    display: flex; align-items: center; justify-content: center;
  }

  .why-accent svg { width: 36px; height: 36px; }

  .why-list { list-style: none; }

  .why-item {
    display: flex; gap: 1.2rem; align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-light);
  }

  .why-item:first-child { border-top: 1px solid var(--gray-light); }

  .why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 300; color: var(--crimson);
    line-height: 1; min-width: 2rem;
  }

  .why-item-title {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
    color: var(--charcoal); margin-bottom: 0.3rem; text-transform: uppercase;
  }

  .why-item-desc {
    font-size: 0.82rem; font-weight: 300; line-height: 1.7;
    color: var(--gray-mid);
  }

  /* ── PROCESS ── */
  .process-section { padding: 7rem 8vw; }

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

  .process-steps::before {
    content: '';
    position: absolute; top: 2.5rem; left: 12%; right: 12%;
    height: 1px; background: var(--gray-light);
  }

  .process-step { text-align: center; position: relative; }

  .process-dot {
    width: 48px; height: 48px; border-radius: 50%;
    background: white; border: 2px solid var(--crimson);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600; color: var(--crimson);
    position: relative; z-index: 1;
    transition: all 0.3s;
  }

  .process-step:hover .process-dot {
    background: var(--crimson); color: white;
  }

  .process-step-title {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.6rem;
  }

  .process-step-desc {
    font-size: 0.8rem; font-weight: 300; line-height: 1.7;
    color: var(--gray-mid);
  }

  /* ── CONTACT ── */
  .contact-section {
    background: var(--charcoal);
    padding: 7rem 8vw;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start;
  }

  .contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; color: white; margin-bottom: 1.5rem;
    line-height: 1.15;
  }

  .contact-title em { font-style: italic; color: var(--gold); }

  .contact-desc {
    font-size: 0.88rem; font-weight: 300; line-height: 1.9;
    color: rgba(255,255,255,0.55); margin-bottom: 3rem;
  }

  .contact-details { list-style: none; }

  .contact-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .contact-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

  .contact-icon { color: var(--crimson); flex-shrink: 0; }

  .contact-item a, .contact-item span {
    font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.7);
    text-decoration: none; transition: color 0.25s;
  }

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

  /* Form */
  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }

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

  .form-label {
    font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(255,255,255,0.4);
  }

  .form-input, .form-select, .form-textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: white; padding: 0.85rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem; font-weight: 300;
    outline: none; transition: border-color 0.25s;
    width: 100%;
  }

  .form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.2); }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--crimson);
  }

  .form-select { appearance: none; cursor: pointer; }
  .form-select option { background: var(--charcoal); }

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

  .form-submit {
    background: var(--crimson); color: white; border: none;
    padding: 1rem 2rem; cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
    text-transform: uppercase; transition: background 0.3s;
    margin-top: 0.5rem;
  }

  .form-submit:hover { background: var(--crimson-dark); }

  /* ── FOOTER ── */
  footer {
    background: #111;
    padding: 2rem 8vw;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  .footer-copy {
    font-size: 0.7rem; font-weight: 300; color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
  }

  .footer-reg {
    font-size: 0.68rem; font-weight: 400;
    color: var(--crimson); letter-spacing: 0.05em;
  }

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

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

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-divider { display: none; }
    .hero-left { padding: 8rem 6vw 5rem; }
    .stats-bar { grid-template-columns: 1fr; }
    .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { border-right: none !important; }
    .why-section { grid-template-columns: 1fr; gap: 3rem; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .contact-section { grid-template-columns: 1fr; gap: 3rem; }
    .nav-links { display: none; }
  }

  /* ── LOGO IMAGES ── */
  .nav-monogram img {
    width: 42px; height: 42px;
    object-fit: cover; border-radius: 50%; display: block;
  }
  .why-accent img {
    width: 80px; height: 80px;
    object-fit: cover; border-radius: 50%; display: block;
  }

 /* ── INSURERS BANNER ── */
.insurers-banner {
  padding: 3rem 8vw;
  background: white;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  overflow: hidden;
}

.insurers-title {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--crimson);
  text-align: center; margin-bottom: 2rem;
}

.insurers-track-wrapper {
  overflow: hidden;
  position: relative;
}

.insurers-track-wrapper::before,
.insurers-track-wrapper::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2;
  pointer-events: none;
}

.insurers-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.insurers-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.insurers-track {
  display: flex; align-items: center; gap: 5rem;
  width: max-content;
  animation: scrollTrack 18s linear infinite;
}

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

.insurer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.25s;
}

.insurer-logo:hover { opacity: 1; }

.insurer-logo[alt="San Cristóbal"] { height: 70px; }

@keyframes scrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn svg {
  width: 30px; height: 30px;
  color: white;
}