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

    :root {
      --navy: #0D1B2A;
      --navy-mid: #132238;
      --navy-light: #1a2e47;
      --cream: #F5F0E8;
      --gold: #C8A84B;
      --gold-light: #E4C97A;
      --gold-faint: rgba(200,168,75,0.08);
      --gray: #6B7280;
      --gray-light: #9CA3AF;
      --black: #050A0F;
      --white: #FFFFFF;
      --available: #2E7D5C;
      --available-bg: rgba(46,125,92,0.12);
      --booked: rgba(200,168,75,0.08);
      --border: rgba(200,168,75,0.18);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--cream);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.2rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(13, 27, 42, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(200, 168, 75, 0.2);
    }

    .nav-brand {
      display: flex;
      align-items: center;
    }

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

    .nav-links a {
      color: var(--gray-light);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

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

    .nav-cta {
      background: var(--gold);
      color: var(--navy) !important;
      padding: 0.5rem 1.2rem;
      border-radius: 2px;
      font-weight: 600 !important;
      transition: background 0.2s !important;
    }

    .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

    /* HERO */
    .hero {
      min-height: 100vh;
      background:
        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=80')
        center center / cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      padding: 6rem 2rem 4rem;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background:
        linear-gradient(
          to bottom,
          rgba(5, 10, 15, 0.82) 0%,
          rgba(13, 27, 42, 0.88) 50%,
          rgba(5, 10, 15, 0.90) 100%
        ),
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(200,168,75,0.10) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,168,75,0.06) 0%, transparent 60%);
    }

    .hero-eyebrow {
      font-size: 1.5rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 900;
      color: var(--cream);
      line-height: 1.05;
      letter-spacing: -0.02em;
      position: relative;
    }

    .hero-title .first-name {
      display: block;
      font-weight: 400;
      font-style: italic;
      font-size: 0.55em;
      letter-spacing: 0.1em;
      color: var(--gray-light);
      margin-bottom: 0.2em;
    }

    /* Animated signature underline */
    .signature-line {
      display: block;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      margin: 0.5rem auto 0;
      animation: signatureDraw 1.4s cubic-bezier(0.4,0,0.2,1) 0.6s forwards;
      border-radius: 2px;
    }

    @keyframes signatureDraw {
      to { width: 100%; }
    }

    .hero-tagline {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-weight: 400;
      font-size: clamp(1.1rem, 2.2vw, 1.5rem);
      color: var(--gold-light);
      margin-top: 0.8rem;
      letter-spacing: 0.01em;
    }

    .hero-sub {
      margin-top: 2rem;
      color: var(--gray-light);
      font-size: 1.05rem;
      font-weight: 300;
      max-width: 520px;
      line-height: 1.7;
      text-align: justify;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-badges {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    .badge {
      background: rgba(200,168,75,0.1);
      border: 1px solid rgba(200,168,75,0.3);
      color: var(--gold-light);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      padding: 0.4rem 1rem;
      border-radius: 2px;
      text-transform: uppercase;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      padding: 0.9rem 2rem;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 2px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: background 0.2s, transform 0.15s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--cream);
      padding: 0.9rem 2rem;
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
      border-radius: 2px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      border: 1px solid rgba(245,240,232,0.3);
      transition: border-color 0.2s, transform 0.15s;
    }

    .btn-secondary:hover {
      border-color: var(--gold);
      color: var(--gold-light);
      transform: translateY(-1px);
    }

    .hero-stats {
      display: flex;
      gap: 3rem;
      justify-content: center;
      margin-top: 4rem;
      padding-top: 3rem;
      border-top: 1px solid rgba(245,240,232,0.1);
      flex-wrap: wrap;
    }

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

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

    .stat-label {
      font-size: 0.75rem;
      color: var(--gray-light);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 0.3rem;
    }

    .hero-content { position: relative; z-index: 1; max-width: 720px; }

    /* ABOUT */
    .about {
      background: var(--cream);
      padding: 6rem 2rem;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

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

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.15;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
      margin-top: 3.5rem;
    }

    .about-text p {
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 1.2rem;
      font-size: 1rem;
    }

    .about-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 2rem;
    }

    .value-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--navy);
    }

    .value-dot {
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .about-contact-card {
      background: var(--navy);
      padding: 2.5rem;
      border-radius: 4px;
      position: sticky;
      top: 5rem;
    }

    .contact-label {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .contact-info-row {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
      color: var(--cream);
      font-size: 0.9rem;
    }

    .contact-icon {
      width: 36px; height: 36px;
      background: rgba(200,168,75,0.15);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1rem;
    }

    .contact-info-row a {
      color: var(--cream);
      text-decoration: none;
      transition: color 0.2s;
    }

    .contact-info-row a:hover { color: var(--gold-light); }

    .colegiado-badge {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(245,240,232,0.1);
      font-size: 0.8rem;
      color: var(--gray-light);
      line-height: 1.6;
    }

    .colegiado-badge strong { color: var(--gold-light); }

    .btn-contact-card {
      display: block;
      text-align: center;
      background: var(--gold);
      color: var(--navy);
      padding: 0.85rem;
      font-size: 0.85rem;
      font-weight: 700;
      text-decoration: none;
      border-radius: 2px;
      margin-top: 1.8rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: background 0.2s;
    }

    .btn-contact-card:hover { background: var(--gold-light); }

    /* SPECIALTIES */
    .specialties {
      background: var(--navy);
      padding: 6rem 2rem;
    }

    .specialties .section-title { color: var(--cream); }
    .specialties .section-eyebrow { color: var(--gold); }

    .specialties-intro {
      color: var(--gray-light);
      max-width: 1300px;
      line-height: 1.7;
      margin-top: 1rem;
    }

    .spec-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1px;
      margin-top: 3.5rem;
      background: rgba(245,240,232,0.07);
      border: 1px solid rgba(245,240,232,0.07);
    }

    .spec-item {
      background: var(--navy-mid);
      padding: 2rem 1.5rem;
      text-align: center;
      transition: background 0.2s;
      cursor: default;
    }

    .spec-item:hover {
      background: rgba(200,168,75,0.08);
    }

    .spec-icon {
      font-size: 1.5rem;
      display: block;
      margin-bottom: 0.75rem;
    }

    .spec-name {
      color: var(--cream);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.03em;
    }

    .spec-item.primary .spec-name {
      color: var(--gold-light);
      font-weight: 600;
    }

    .spec-tag {
      display: inline-block;
      margin-top: 0.5rem;
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }

    /* REVIEWS */
    .reviews {
      background: var(--cream);
      padding: 6rem 2rem;
    }

    .reviews-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 3rem;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .rating-summary {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

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

    .rating-details .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.1em; }
    .rating-details .count { font-size: 0.8rem; color: var(--gray); margin-top: 0.2rem; }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .review-card {
      background: var(--white);
      padding: 2rem;
      border-radius: 4px;
      border: 1px solid rgba(13,27,42,0.08);
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .review-card:hover {
      box-shadow: 0 8px 32px rgba(13,27,42,0.08);
      transform: translateY(-2px);
    }

    .review-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; }

    .review-text {
      color: var(--gray);
      font-size: 0.9rem;
      line-height: 1.7;
      margin: 0.8rem 0 1.2rem;
      font-style: italic;
    }

    .review-text::before { content: '"'; }
    .review-text::after { content: '"'; }

    .review-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .reviewer-name {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--navy);
    }

    .review-spec {
      font-size: 0.75rem;
      color: var(--gold);
      font-weight: 500;
    }

    .review-date {
      font-size: 0.75rem;
      color: var(--gray-light);
    }

    /* HOW */
    .how {
      background: #0D1B2A;
      padding: 6rem 2rem;
    }

    .how .section-title { color: var(--cream); }

    .how-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3.5rem;
    }

    .step {
      padding: 2.5rem 2rem;
      border: 1px solid rgba(200,168,75,0.2);
      border-radius: 4px;
      position: relative;
      overflow: hidden;
      transition:
        transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
    }

    .step::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transition: width 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .step:hover {
      transform: translateY(-6px);
      border-color: rgba(200,168,75,0.55);
      box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 4px 12px rgba(200,168,75,0.08);
      background: rgba(200,168,75,0.04);
    }

    .step:hover::after {
      width: 100%;
    }

    .step-num {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: rgba(200,168,75,0.15);
      line-height: 1;
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      transition: color 0.35s ease, transform 0.35s ease;
    }

    .step:hover .step-num {
      color: rgba(200,168,75,0.32);
      transform: scale(1.08) translateY(-2px);
    }

    .step-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 0.75rem;
      transition: color 0.3s ease;
    }

    .step:hover .step-title {
      color: var(--gold-light);
    }

    .step-desc {
      color: var(--gray-light);
      font-size: 0.9rem;
      line-height: 1.7;
      transition: color 0.3s ease;
    }

    .step:hover .step-desc {
      color: #c8cdd4;
    }

    /* CONTACT FORM */
    .contact {
      background: var(--cream);
      padding: 6rem 2rem;
    }

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

    .contact-side p {
      color: var(--gray);
      line-height: 1.7;
      margin-top: 1rem;
      font-size: 0.95rem;
    }

    .contact-detail {
      margin-top: 2rem;
    }

    .contact-detail-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .cd-icon {
      width: 42px; height: 42px;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 2px;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .cd-label {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
    }

    .cd-value {
      font-size: 0.95rem;
      color: var(--navy);
      font-weight: 500;
      margin-top: 0.2rem;
    }

    .cd-value a {
      color: var(--navy);
      text-decoration: none;
      transition: color 0.2s;
    }

    .cd-value a:hover { color: var(--gold); }

    /* Form */
    .form-card {
      background: var(--navy);
      padding: 3rem;
      border-radius: 4px;
    }

    .form-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 0.5rem;
    }

    .form-subtitle {
      color: var(--gray-light);
      font-size: 0.85rem;
      margin-bottom: 2rem;
    }

    .form-group {
      margin-bottom: 1.2rem;
    }

    .form-group label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray-light);
      margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: rgba(245,240,232,0.06);
      border: 1px solid rgba(245,240,232,0.12);
      border-radius: 2px;
      padding: 0.75rem 1rem;
      color: var(--cream);
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      transition: border-color 0.2s;
      outline: none;
    }

    .form-group select option { background: var(--navy); color: var(--cream); }

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

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

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

    .form-submit {
      width: 100%;
      background: var(--gold);
      color: var(--navy);
      padding: 0.95rem;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      margin-top: 0.5rem;
      transition: background 0.2s;
    }

    .form-submit:hover { background: var(--gold-light); }

    .form-note {
      margin-top: 1rem;
      font-size: 0.75rem;
      color: var(--gray-light);
      text-align: center;
      line-height: 1.5;
    }

    /* FOOTER */
    footer {
      background: var(--black);
      padding: 3rem 2rem;
      text-align: center;
    }

    .footer-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 0.5rem;
    }

    .footer-info {
      color: var(--gray);
      font-size: 0.8rem;
      line-height: 1.8;
    }

    .footer-divider {
      width: 60px;
      height: 2px;
      background: var(--gold);
      margin: 1.5rem auto;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }

    .footer-links a {
      color: var(--gray);
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.2s;
    }

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

    .footer-copy {
      margin-top: 2rem;
      font-size: 0.75rem;
      color: rgba(107,114,128,0.6);
    }


    .about-photo-wrap {
      margin-bottom: 1.5rem;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
    }
    .about-photo {
      width: 100%;
      display: block;
      object-fit: cover;
      object-position: center top;
      max-height: 710px;
      border-radius: 4px;
      filter: grayscale(8%);
    }

    .nav-logo {
      height: 86px;
      width: auto;
      display: block;
      background: none;
      mix-blend-mode: screen;
    }
    .footer-logo-wrap {
      margin-bottom: 1rem;
    }
    .footer-logo {
      height: 260px;
      width: auto;
      display: inline-block;
      background: none;
      mix-blend-mode: screen;
    }

    /* BRAND BANNER */
    .brand-banner {
      width: 100%;
      background: #0a1525;
      line-height: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 3rem 2rem;
    }
    .brand-banner-img {
      max-width: 900px;
      width: 100%;
      display: block;
      height: auto;
      object-fit: contain;
    }



  /* ── HAMBURGUESA ── */
  .nav-hamburger {
    display: none;
  }

  /* Responsive — Mobile */
  /* ═══════════════════════════════════════════════
     RESPONSIVE — MÓVIL (≤768px)
     ═══════════════════════════════════════════════ */
  @media (max-width: 768px) {
    html, body { overflow-x: hidden; }

    .spec-cards-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }

    /* ── NAV ── */
    nav {
      display: grid;
      grid-template-columns: auto 1fr auto auto;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1rem;
      min-height: 60px;
    }

    .nav-brand { grid-column: 1; }

    .nav-logo { height: 50px; }

    .nav-links { display: none; }

    .nav-mobile-cta {
      grid-column: 3;
      display: inline-flex !important;
      align-items: center;
      gap: 0.4rem;
      background: var(--gold);
      color: var(--navy);
      padding: 0.45rem 0.85rem;
      border-radius: 2px;
      font-size: 0.75rem;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.04em;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .nav-hamburger {
      grid-column: 4;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: transparent;
      border: 1px solid rgba(200,168,75,0.3);
      border-radius: 4px;
      cursor: pointer;
      padding: 6px;
      flex-shrink: 0;
    }

    .nav-hamburger span {
      display: block;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
      transform-origin: center;
    }

    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-links {
      position: fixed;
      top: 60px; left: 0; right: 0;
      background: rgba(13, 27, 42, 0.98);
      backdrop-filter: blur(12px);
      flex-direction: column;
      padding: 1.5rem 1.5rem 2rem;
      gap: 0;
      border-bottom: 1px solid rgba(200,168,75,0.2);
      z-index: 99;
      list-style: none;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
      display: block;
      padding: 1rem 0;
      font-size: 1rem;
      border-bottom: 1px solid rgba(200,168,75,0.08);
      letter-spacing: 0.05em;
    }

    .nav-links li:last-child { display: none; }

    /* ── HERO ── */
    .hero {
      padding: 5.5rem 1.2rem 3rem;
      min-height: 100svh;
      align-items: flex-start;
      padding-top: 5.5rem;
    }
    .hero-content { max-width: 100%; width: 100%; }
    .hero-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      margin-bottom: 0.8rem;
      line-height: 1.5;
    }
    .hero-title { font-size: clamp(2rem, 9vw, 3rem); line-height: 1.1; }
    .hero-sub {
      font-size: 0.88rem;
      margin-top: 1rem;
      text-align: left;
    }
    .hero-badges { gap: 0.4rem; margin-top: 1.2rem; }
    .badge { font-size: 0.62rem; padding: 0.3rem 0.65rem; }
    .hero-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 0.6rem;
      margin-top: 1.8rem;
    }
    .btn-primary, .btn-secondary {
      width: 100%;
      max-width: 100%;
      justify-content: center;
      text-align: center;
      padding: 0.85rem 1.5rem;
      font-size: 0.85rem;
    }
    .hero-stats {
      gap: 1rem;
      padding-top: 1.8rem;
      margin-top: 2rem;
      justify-content: space-around;
    }
    .stat-num { font-size: 1.6rem; }
    .stat-label { font-size: 0.62rem; }

      /* ── SOBRE MÍ (ABOUT) ── */
      .about { padding: 3rem 1.2rem; }
      .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .about-contact-card {
        position: static;
        padding: 1.8rem 1.4rem;
      }
      .about-values { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
      .about-photo { max-height: 260px; object-position: center top; }
      .about-photo-wrap { margin-bottom: 1rem; }

      /* ── ESPECIALIDADES ── */
      .specialties { padding: 3rem 1.2rem; }
      .specialties-intro { font-size: 0.88rem; }
      .spec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
      }
      .spec-item { padding: 1.5rem 1rem; }

      /* ── OPINIONES (REVIEWS) ── */
      .reviews { padding: 3rem 1.2rem; }
      .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
      }
      .rating-summary { gap: 0.8rem; }
      .rating-big { font-size: 2.2rem; }
      .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
      .review-card { padding: 1.5rem; }
      .review-meta { flex-direction: column; align-items: flex-start; gap: 0.3rem; }

      /* ── CÓMO FUNCIONA (HOW) ── */
      .how { padding: 3rem 1.2rem; }
      .how-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .step { padding: 1.6rem 1.2rem; }
      .step-num { font-size: 2.5rem; top: 1rem; right: 1rem; }

      /* ── CONTACTO ── */
      .contact { padding: 3rem 1.2rem; }
      .contact-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      .form-card { padding: 1.6rem 1.2rem; }
      .form-row { grid-template-columns: 1fr; }
      .contact-detail-item { gap: 0.8rem; }
      .cd-icon { width: 36px; height: 36px; font-size: 0.9rem; }

      /* ── MAPA ── */
      .map-header { padding: 2.5rem 1.2rem 1.5rem; }
      .map-address-text { font-size: 0.88rem; }
      .map-pin-card {
        position: static;
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding: 1rem 1.2rem;
      }

      /* ── FOOTER ── */
      .footer-logo { height: 120px; }
      .footer-links { gap: 0.8rem; font-size: 0.75rem; }
      .footer-info { font-size: 0.75rem; line-height: 1.7; }
      .footer-name { font-size: 1.1rem; }

      /* ── TIPOGRAFÍA GLOBAL ── */
      .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
      .section-eyebrow { font-size: 0.65rem; }

      /* ── BRAND BANNER ── */
      .brand-banner { padding: 2rem 1.2rem; }
    }

    /* ═══════════════════════════════════════════════
       RESPONSIVE — MÓVIL PEQUEÑO (≤480px)
       ═══════════════════════════════════════════════ */
    @media (max-width: 480px) {
      /* NAV */
      nav { padding: 0.6rem 0.9rem; }
      .nav-logo { height: 34px; }
      .nav-mobile-cta {
        font-size: 0.7rem;
        padding: 0.4rem 0.7rem;
      }

      /* HERO */
      .hero { padding: 5rem 1rem 2.5rem; }
      .hero-eyebrow { font-size: 0.65rem; }
      .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
      .hero-sub { font-size: 0.82rem; }
      .hero-stats { gap: 0.6rem; }
      .stat-num { font-size: 1.4rem; }
      .hero-badges { justify-content: flex-start; }

      /* ABOUT */
      .about { padding: 2.5rem 1rem; }
      .about-contact-card { padding: 1.4rem 1rem; }
      .about-values { grid-template-columns: 1fr; }
      .contact-info-row { font-size: 0.85rem; }

      /* SPECIALTIES */
      .specialties { padding: 2.5rem 1rem; }
      .spec-grid { grid-template-columns: repeat(2, 1fr); }
      .spec-item { padding: 1.2rem 0.8rem; }
      .spec-icon { font-size: 1.2rem; }
      .spec-name { font-size: 0.78rem; }

      /* REVIEWS */
      .reviews { padding: 2.5rem 1rem; }
      .review-card { padding: 1.2rem; }
      .review-text { font-size: 0.85rem; }
      .rating-big { font-size: 2rem; }

      /* HOW */
      .how { padding: 2.5rem 1rem; }
      .step { padding: 1.4rem 1rem; }
      .step-title { font-size: 1.05rem; }
      .step-desc { font-size: 0.85rem; }

      /* CONTACT */
      .contact { padding: 2.5rem 1rem; }
      .form-card { padding: 1.3rem 1rem; }
      .form-group label { font-size: 0.7rem; }
      .form-group input,
      .form-group select,
      .form-group textarea { font-size: 0.85rem; padding: 0.65rem 0.85rem; }
      .form-submit { font-size: 0.85rem; padding: 0.85rem; }

      /* SECTION TYPOGRAPHY */
      .section-title { font-size: clamp(1.4rem, 7vw, 2rem); }

      /* FOOTER */
      .footer-logo { height: 100px; }
      .footer-links { gap: 0.6rem; }
    }

    /* ═══════════════════════════════════════════════
       RESPONSIVE — MÓVIL MUY PEQUEÑO (≤400px)
       ═══════════════════════════════════════════════ */
    @media (max-width: 400px) {
      .spec-grid { grid-template-columns: 1fr; }
      .hero-title { font-size: 1.8rem; }
      .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.08em; }
      .about-values { grid-template-columns: 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      .signature-line { animation: none; width: 100%; }
    }

    /* MAP */
    .map-section { background: var(--navy); }
    .map-header { padding: 4rem 2rem 2rem; }
    .map-address-text { color: var(--gray-light); margin-top: 0.5rem; font-size: 0.95rem; }
    .map-wrapper { position: relative; }
    .map-pin-card {
      position: absolute;
      top: 1.5rem; left: 1.5rem;
      background: var(--navy);
      border: 1px solid rgba(200,168,75,0.3);
      border-radius: 4px;
      padding: 1.2rem 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      z-index: 10;
      max-width: 340px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    }
    .pin-icon { font-size: 1.5rem; flex-shrink:0; }
    .pin-info { display:flex; flex-direction:column; gap:0.15rem; }
    .pin-info strong { color: var(--cream); font-size:0.9rem; }
    .pin-info span { color: var(--gray-light); font-size:0.8rem; }
    .pin-directions {
      display:inline-block;
      margin-top:0.5rem;
      font-size:0.75rem;
      font-weight:600;
      color:var(--gold);
      text-decoration:none;
      letter-spacing:0.05em;
      white-space:nowrap;
    }
    .pin-directions:hover { color: var(--gold-light); }
    @media (max-width: 600px) {
      .map-pin-card {
        position: static;
        max-width: 100%;
        border-radius: 0;
        border-top: none;
        padding: 1rem 1.2rem;
      }
    }


    /* ── SECCIÓN CITAS ── */
    .booking-section {
      background: var(--navy);
      padding: 6rem 2rem;
    }

    .booking-section .section-eyebrow { color: var(--gold); }
    .booking-section .section-title { color: var(--cream); }
    .booking-section-inner { max-width: 1100px; margin: 0 auto; }
    .booking-section-header { text-align: center; margin-bottom: 3rem; }
    .booking-section-subtitle { color: var(--gray-light); font-size: 0.95rem; font-weight: 300; margin-top: 0.8rem; }

    .booking-stepper { display: flex; align-items: center; justify-content: center; margin-bottom: 3rem; }
    .bk-step-item { display: flex; align-items: center; gap: 0.6rem; }
    .bk-step-num { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(200,168,75,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: var(--gray-light); transition: all 0.3s; flex-shrink: 0; }
    .bk-step-item.active .bk-step-num { background: var(--gold); border-color: var(--gold); color: var(--navy); }
    .bk-step-item.done .bk-step-num { background: var(--available); border-color: var(--available); color: #fff; }
    .bk-step-label { font-size: 0.75rem; font-weight: 500; color: var(--gray-light); letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; display: none; }
    .bk-step-item.active .bk-step-label, .bk-step-item.done .bk-step-label { display: block; }
    .bk-step-item.active .bk-step-label { color: var(--gold); }
    .bk-step-item.done .bk-step-label { color: var(--available); }
    .bk-step-connector { width: 40px; height: 1px; background: rgba(200,168,75,0.2); margin: 0 0.5rem; }

    .bk-grid { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }

    .cal-panel { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
    .cal-hdr { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 1.8rem; border-bottom: 1px solid var(--border); }
    .cal-month-lbl { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--cream); }
    .cal-month-lbl span { color: var(--gold); }
    .cal-nav-grp { display: flex; gap: 0.5rem; }
    .cal-nav-b { width: 34px; height: 34px; border: 1px solid var(--border); background: transparent; border-radius: 4px; color: var(--gray-light); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; font-size: 1rem; }
    .cal-nav-b:hover { background: var(--gold-faint); border-color: var(--gold); color: var(--gold); }
    .cal-leg { display: flex; gap: 1.5rem; padding: 0.8rem 1.8rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
    .cal-leg-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--gray-light); letter-spacing: 0.04em; }
    .cal-leg-dot { width: 10px; height: 10px; border-radius: 2px; }
    .cal-days-hdr { display: grid; grid-template-columns: repeat(7, 1fr); padding: 0.6rem 1rem; border-bottom: 1px solid rgba(200,168,75,0.08); }
    .cal-day-nm { text-align: center; font-size: 0.68rem; font-weight: 600; color: var(--gray-light); letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0; }
    .cal-body { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; padding: 1rem; }
    .cal-cell { aspect-ratio: 1; border-radius: 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; cursor: pointer; transition: all 0.18s; border: 1px solid transparent; min-height: 48px; }
    .cal-cell.empty { cursor: default; }
    .cal-cell.past { opacity: 0.3; cursor: not-allowed; }
    .cal-cell.has-slots { border-color: rgba(46,125,92,0.25); background: rgba(46,125,92,0.07); }
    .cal-cell.has-slots:hover { border-color: var(--available); background: rgba(46,125,92,0.18); transform: translateY(-1px); }
    .cal-cell.no-slots { opacity: 0.45; cursor: not-allowed; }
    .cal-cell.selected { border-color: var(--gold) !important; background: rgba(200,168,75,0.15) !important; transform: translateY(-1px); }
    .cal-cell.today .cell-num::after { content: ''; display: block; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; margin: 2px auto 0; }
    .cell-num { font-size: 0.9rem; font-weight: 500; color: var(--cream); line-height: 1; }
    .cal-cell.selected .cell-num { color: var(--gold); font-weight: 700; }
    .cal-cell.past .cell-num { color: var(--gray-light); }
    .cell-slots { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.04em; color: var(--available); }
    .cal-cell.no-slots .cell-slots { color: var(--gray-light); }
    .cal-cell.selected .cell-slots { color: var(--gold-light); }

    .bk-time-panel { padding: 1.4rem 1.8rem; border-top: 1px solid var(--border); display: none; }
    .bk-time-panel.visible { display: block; }
    .bk-time-title { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
    .bk-time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .bk-time-slot { padding: 0.6rem 0.4rem; border-radius: 5px; border: 1px solid rgba(46,125,92,0.3); background: rgba(46,125,92,0.06); text-align: center; cursor: pointer; transition: all 0.18s; font-size: 0.82rem; font-weight: 500; color: var(--cream); }
    .bk-time-slot:hover { border-color: var(--available); background: rgba(46,125,92,0.2); }
    .bk-time-slot.selected { border-color: var(--gold); background: rgba(200,168,75,0.18); color: var(--gold); font-weight: 700; }
    .bk-time-slot.booked { border-color: rgba(255,255,255,0.06); background: transparent; color: var(--gray); cursor: not-allowed; text-decoration: line-through; opacity: 0.4; }

    .bk-sidebar { display: flex; flex-direction: column; gap: 1.2rem; }
    .bk-panel { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 8px; padding: 1.4rem; }
    .bk-panel-title { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
    .bk-type-options { display: flex; flex-direction: column; gap: 0.5rem; }
    .bk-type-opt { display: flex; align-items: center; gap: 0.9rem; padding: 0.85rem 1rem; border-radius: 6px; border: 1px solid rgba(200,168,75,0.15); background: transparent; cursor: pointer; transition: all 0.2s; text-align: left; width: 100%; }
    .bk-type-opt:hover { border-color: rgba(200,168,75,0.4); background: var(--gold-faint); }
    .bk-type-opt.selected { border-color: var(--gold); background: rgba(200,168,75,0.1); }
    .bk-type-ico { font-size: 1.3rem; flex-shrink: 0; }
    .bk-type-nm { font-size: 0.88rem; font-weight: 600; color: var(--cream); display: block; }
    .bk-type-opt.selected .bk-type-nm { color: var(--gold); }
    .bk-type-dt { font-size: 0.72rem; color: var(--gray-light); margin-top: 0.15rem; }
    .bk-sum-row { display: flex; justify-content: space-between; align-items: center; padding: 0.55rem 0; border-bottom: 1px solid rgba(200,168,75,0.08); font-size: 0.83rem; }
    .bk-sum-row:last-child { border-bottom: none; }
    .bk-sum-label { color: var(--gray-light); }
    .bk-sum-value { color: var(--cream); font-weight: 600; text-align: right; }
    .bk-sum-value.empty { color: var(--gray); font-weight: 400; font-style: italic; }
    .bk-sum-value.gold { color: var(--gold); }
    .bk-gold-line { display: block; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1.5rem 0; border: none; }

    .bk-step2 { display: none; }
    .bk-step2.visible { display: block; }
    .bk-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .bk-fg { display: flex; flex-direction: column; gap: 0.4rem; }
    .bk-fg.full { grid-column: 1 / -1; }
    .bk-lbl { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
    .bk-inp, .bk-sel, .bk-ta { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,168,75,0.2); border-radius: 4px; padding: 0.7rem 0.9rem; font-size: 0.9rem; font-family: 'Inter', sans-serif; color: var(--cream); transition: border-color 0.2s, background 0.2s; width: 100%; }
    .bk-inp::placeholder, .bk-ta::placeholder { color: var(--gray); }
    .bk-inp:focus, .bk-sel:focus, .bk-ta:focus { outline: none; border-color: var(--gold); background: rgba(200,168,75,0.05); }
    .bk-sel option { background: var(--navy-mid); color: var(--cream); }
    .bk-ta { resize: vertical; min-height: 90px; }
    .bk-privacy { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.75rem; color: var(--gray-light); line-height: 1.5; margin-top: 0.5rem; }
    .bk-privacy input[type="checkbox"] { width: auto; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
    .bk-privacy-lbl { font-size: 0.75rem; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--gray-light); }

    .btn-bk { width: 100%; background: var(--gold); color: var(--navy); border: none; padding: 1rem; font-size: 0.9rem; font-weight: 700; font-family: 'Inter', sans-serif; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 4px; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-top: 1.2rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
    .btn-bk:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-bk:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
    .btn-bk-out { width: 100%; background: transparent; color: var(--gray-light); border: 1px solid rgba(200,168,75,0.2); padding: 0.75rem; font-size: 0.82rem; font-weight: 500; font-family: 'Inter', sans-serif; letter-spacing: 0.05em; border-radius: 4px; cursor: pointer; transition: all 0.2s; margin-top: 0.6rem; }
    .btn-bk-out:hover { border-color: var(--gold); color: var(--cream); }

    .bk-confirm { display: none; text-align: center; padding: 4rem 2rem; }
    .bk-confirm.visible { display: block; }
    .bk-confirm-icon { width: 72px; height: 72px; background: rgba(46,125,92,0.15); border: 2px solid var(--available); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 2rem; }
    .bk-confirm-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
    .bk-confirm-sub { color: var(--gray-light); font-size: 0.95rem; margin-bottom: 2.5rem; }
    .bk-confirm-card { background: var(--navy-mid); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; max-width: 480px; margin: 0 auto 2rem; text-align: left; }
    .bk-confirm-row { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(200,168,75,0.08); }
    .bk-confirm-row:last-child { border-bottom: none; }
    .bk-confirm-ico { width: 36px; height: 36px; background: var(--gold-faint); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
    .bk-confirm-lbl { font-size: 0.68rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.1em; }
    .bk-confirm-val { font-size: 0.9rem; color: var(--cream); font-weight: 600; margin-top: 0.1rem; }
    .bk-confirm-note { font-size: 0.8rem; color: var(--gray-light); line-height: 1.6; margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
    .bk-confirm-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
    .bk-confirm-btn { padding: 0.75rem 1.6rem; border-radius: 4px; font-size: 0.83rem; font-weight: 600; font-family: 'Inter', sans-serif; letter-spacing: 0.05em; cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
    .bk-confirm-btn.primary { background: var(--gold); color: var(--navy); border: none; }
    .bk-confirm-btn.primary:hover { background: var(--gold-light); }
    .bk-confirm-btn.outline { background: transparent; color: var(--gray-light); border: 1px solid rgba(200,168,75,0.25); }
    .bk-confirm-btn.outline:hover { border-color: var(--gold); color: var(--cream); }

    @media (max-width: 768px) {
      .booking-section { padding: 3rem 1.2rem; }
      .booking-section-header { margin-bottom: 2rem; }
      .booking-section-subtitle { font-size: 0.88rem; }
      .bk-grid { grid-template-columns: 1fr; gap: 1.2rem; }
      .bk-sidebar { order: -1; }
      .bk-time-grid { grid-template-columns: repeat(4, 1fr); }
      .bk-form-grid { grid-template-columns: 1fr; }
      .booking-stepper { gap: 0; }
      .bk-step-label { display: none !important; }
      .bk-confirm-actions { flex-direction: column; align-items: center; }
      .bk-confirm-card { padding: 1.4rem 1.2rem; }
      .cal-hdr { padding: 1.1rem 1.2rem; }
      .cal-month-lbl { font-size: 1.1rem; }
      .cal-leg { padding: 0.6rem 1.2rem; gap: 0.8rem; }
      .bk-panel { padding: 1.1rem; }
      .cal-body { padding: 0.7rem; gap: 3px; }
      .cal-cell { min-height: 42px; }
      .cell-num { font-size: 0.82rem; }
      .cell-slots { font-size: 0.52rem; }
    }

    @media (max-width: 480px) {
      .booking-section { padding: 2.5rem 1rem; }
      .bk-time-grid { grid-template-columns: repeat(3, 1fr); }
      .cal-body { gap: 2px; padding: 0.6rem; }
      .cal-cell { min-height: 38px; }
      .bk-confirm-title { font-size: 1.5rem; }
      .bk-confirm-card { padding: 1.2rem 1rem; }
    }

    @media (max-width: 400px) {
      .bk-time-grid { grid-template-columns: repeat(3, 1fr); }
      .cal-body { gap: 2px; padding: 0.5rem; }
      .cal-cell { min-height: 36px; }
      .cal-day-nm { font-size: 0.58rem; }
    }
  

/* spec-item hover */

  .spec-item-penal img,
  .spec-item-img img {
    filter: grayscale(100%);
    transition: filter 0.4s ease;
  }
  .spec-item-penal:hover img,
  .spec-item-img:hover img {
    filter: grayscale(0%);
  }


/* misc */

  .spec-item-img img {
    filter: grayscale(100%);
    transition: filter 0.4s ease;
  }
  .spec-item-img:hover img {
    filter: grayscale(0%);
  }


/* whatsapp float */

  .whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0,0,0,0.25);
  }

  .whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
  }

  .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #fff;
    color: #0D1B2A;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
  }

  .whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
  }

  @media (max-width: 600px) {
    .whatsapp-float {
      bottom: 20px;
      right: 20px;
      width: 54px;
      height: 54px;
    }
    .whatsapp-float svg {
      width: 28px;
      height: 28px;
    }
  }

/* ===================================================
   ESTILOS ESPECÍFICOS — PÁGINAS DE ÁREA DE PRÁCTICA
   =================================================== */

.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6.5rem 2rem 0;
  font-size: 0.8rem;
  color: var(--gray-light);
  letter-spacing: 0.03em;
}
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; color: rgba(245,240,232,0.3); }

.service-hero {
  background: var(--navy);
  padding: 2.2rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(200,168,75,0.10) 0%, transparent 65%);
}
.service-hero .container { position: relative; }
.service-hero-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.service-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  max-width: 780px;
}
.service-hero .lead {
  color: var(--gray-light);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 680px;
  margin-top: 1.4rem;
}
.service-hero .hero-actions { margin-top: 2.2rem; justify-content: flex-start; }
@media (max-width: 640px) { .service-hero .hero-actions { justify-content: stretch; } }

.service-section { padding: 5rem 2rem; background: var(--cream); }
.service-section.alt { background: var(--navy); }
.service-section.alt .section-title,
.service-section.alt h3 { color: var(--cream); }
.service-section.alt p { color: var(--gray-light); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  margin-top: 2.8rem;
}
.service-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 8px;
  padding: 1.8rem 1.8rem;
}
.service-card .num {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: block;
}
.service-card h3 {
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  font-family: 'Inter', sans-serif;
}
.service-card p { color: var(--gray-light); font-size: 0.92rem; line-height: 1.65; margin: 0; }

.process-steps {
  margin-top: 2.8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.process-step .step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--gold-faint);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.process-step h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.process-step p { font-size: 0.85rem; color: var(--gray); line-height: 1.55; }

.related-areas {
  display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem;
}
.related-areas a {
  border: 1px solid var(--border);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.55rem 1.1rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.related-areas a:hover { background: var(--navy); color: var(--cream); }

.cta-band {
  background: var(--gold-faint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.2rem 2rem;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.cta-band p { color: var(--gray); margin-bottom: 1.8rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .service-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .breadcrumb { padding-top: 6rem; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}
