﻿    :root {
      --bg-main: #fafafa;
      --bg-alt: #f1f3f5;
      --navy: #1a2530;
      --navy-soft: #1e293b;
      --accent: #c5a880;
      --accent-hover: #b89770;
      --text-title: #1a2530;
      --text-body: #3a4249;
      --text-muted: #5c656d;
      --border-subtle: #e9ecef;
      --shadow-soft: 0 4px 24px rgba(26, 37, 48, 0.07);
      --font-size-body: 1.0625rem;
      --font-size-sm: 0.9375rem;
      --font-size-card-title: 1.25rem;
      --font-size-section-lead: 1.125rem;
      --line-height-body: 1.7;
      --line-height-tight: 1.35;
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
      --font-heading: "Libre Baskerville", Georgia, "Times New Roman", serif;
      --font-body: "Source Sans 3", system-ui, sans-serif;
      --section-py: 110px;
      --section-py-mobile: 72px;
      --page-px: 1.5rem;
      --hero-px: var(--page-px);
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
      --nav-duration: 0.45s;
      --hero-vh: 100vh;
      --hero-vh: 100dvh;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--nav-height, 5.5rem);
      overflow-x: clip;
    }

    body {
      font-family: var(--font-body);
      font-size: var(--font-size-body);
      line-height: var(--line-height-body);
      color: var(--text-body);
      background-color: var(--bg-main);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: clip;
    }

    strong {
      font-weight: 600;
      color: var(--navy);
    }

    .container {
      --bs-gutter-x: calc(var(--page-px) * 2);
      padding-left: max(var(--page-px), env(safe-area-inset-left, 0px));
      padding-right: max(var(--page-px), env(safe-area-inset-right, 0px));
    }

    .container > .row,
    .container .practice-grid,
    .container .studio-highlights,
    .container .contact-form__row {
      --bs-gutter-x: calc(var(--page-px) * 2);
    }

    h1, h2, h3, h4, h5, h6,
    .font-heading {
      font-family: var(--font-heading);
      color: var(--text-title);
      font-weight: 700;
      line-height: var(--line-height-tight);
      letter-spacing: 0.015em;
    }

    p { margin-bottom: 1rem; }
    p:last-child { margin-bottom: 0; }

    .section-padding {
      padding-top: var(--section-py-mobile);
      padding-bottom: var(--section-py-mobile);
    }

    @media (min-width: 992px) {
      .section-padding {
        padding-top: var(--section-py);
        padding-bottom: var(--section-py);
      }
    }

    .bg-main { background-color: var(--bg-main); }
    .bg-alt { background-color: var(--bg-alt); }

    .text-navy { color: var(--navy) !important; }
    .text-accent { color: var(--accent) !important; }

    .eyebrow {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .lead-custom {
      font-size: var(--font-size-section-lead);
      line-height: var(--line-height-body);
      color: var(--text-body);
      max-width: 38rem;
    }

    /* â”€â”€ Hero Header (Navbar + Hero unificados) â”€â”€ */
    .hero-header {
      position: relative;
      width: 100%;
      height: var(--hero-vh);
      max-height: var(--hero-vh);
      min-height: 0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      isolation: isolate;
    }

    .hero-header__bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
      background-color: var(--color-primary, #1a2530);
    }

    .hero-header__bg picture {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      margin: 0;
    }

    .hero-header__bg-img {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      min-width: 100%;
      min-height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0;
      transition: opacity 0.35s ease;
    }

    body.is-hero-ready .hero-header__bg-img {
      opacity: 1;
    }

    .hero-header__overlay {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        135deg,
        rgba(26, 37, 48, 0.88) 0%,
        rgba(26, 37, 48, 0.72) 50%,
        rgba(26, 37, 48, 0.82) 100%
      );
      z-index: 1;
      pointer-events: none;
    }

    .hero-header__inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      flex: 1 1 auto;
      width: 100%;
      height: 100%;
      min-height: 0;
      padding-top: var(--nav-height, 6.5rem);
      padding-bottom: max(0px, env(safe-area-inset-bottom, 0px));
    }

    /* ── Navbar (siempre fijo: evita saltos y solapamientos) ── */
    .navbar-spacer {
      display: none;
    }

    .navbar-custom {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1040;
      padding: 1.25rem 0;
      background: transparent;
      border-bottom: none;
    }

    .navbar-custom.scrolled {
      padding: 0.65rem 0;
    }

    .navbar-custom .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    .navbar-brand-custom {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }

    .navbar-logo {
      height: 56px;
      width: auto;
      max-width: min(calc(100vw - 7rem), 240px);
      object-fit: contain;
      object-position: left center;
      filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.2));
    }

    @media (min-width: 576px) {
      .navbar-logo {
        height: 68px;
        max-width: min(100%, 280px);
      }
    }

    @media (min-width: 768px) {
      .navbar-logo {
        height: 96px;
        max-width: min(100%, 400px);
      }
    }

    @media (min-width: 1200px) {
      .navbar-logo {
        height: 112px;
        max-width: min(100%, 460px);
      }
    }

    .navbar-custom.scrolled .navbar-logo {
      height: 52px;
      max-width: min(100%, 220px);
      filter: none;
    }

    @media (min-width: 768px) {
      .navbar-custom.scrolled .navbar-logo {
        height: 58px;
        max-width: min(100%, 260px);
      }
    }

    @media (min-width: 1200px) {
      .navbar-custom.scrolled .navbar-logo {
        height: 64px;
        max-width: min(100%, 280px);
      }
    }

    .navbar-toggler-custom {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 10px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 6px;
      cursor: pointer;
    }

    .navbar-toggler-custom span {
      display: block;
      width: 100%;
      height: 2px;
      background: #fff;
      border-radius: 1px;
    }

    .navbar-custom.scrolled .navbar-toggler-custom {
      background: var(--bg-alt);
      border-color: var(--border-subtle);
    }

    .navbar-custom.scrolled .navbar-toggler-custom span {
      background: var(--navy);
    }

    .navbar-toggler-custom.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .navbar-toggler-custom.active span:nth-child(2) {
      opacity: 0;
    }

    .navbar-toggler-custom.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    @media (min-width: 992px) {
      .navbar-toggler-custom { display: none; }
    }

    .navbar-menu {
      width: 100%;
      flex-direction: column;
      gap: 0;
      padding: 0;
      margin: 0;
      list-style: none;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transition:
        max-height 0.5s var(--ease-out),
        opacity 0.4s var(--ease-out),
        padding 0.4s var(--ease-out),
        visibility 0s linear 0.5s;
    }

    .navbar-menu.open {
      max-height: min(78vh, 560px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      opacity: 1;
      visibility: visible;
      padding: 1rem 0 0;
      transition:
        max-height 0.5s var(--ease-out),
        opacity 0.4s var(--ease-out),
        padding 0.4s var(--ease-out),
        visibility 0s;
    }

    @media (min-width: 992px) {
      .navbar-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: auto;
        max-height: none;
        opacity: 1;
        visibility: visible;
        overflow: visible;
        padding: 0;
        gap: 0.25rem;
        margin-left: auto;
      }

      .navbar-menu.open {
        padding: 0;
      }
    }

    .navbar-menu__link {
      display: block;
      padding: 0.75rem 1rem;
      font-size: 1rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      border-radius: 6px;
      position: relative;
    }

    @media (min-width: 992px) {
      .navbar-menu__link::after {
        content: "";
        position: absolute;
        left: 0.875rem;
        right: 0.875rem;
        bottom: 0.35rem;
        height: 2px;
        background: var(--accent);
        transform: scaleX(0);
        transform-origin: left center;
      }
    }

    .navbar-menu__link:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
    }

    .navbar-custom.scrolled .navbar-menu__link {
      color: var(--text-body);
    }

    .navbar-custom.scrolled .navbar-menu__link:hover {
      color: var(--navy);
      background: var(--bg-alt);
    }

    @media (min-width: 992px) {
      .navbar-menu__link {
        padding: 0.5rem 0.875rem;
      }
    }

    .navbar-menu__cta {
      margin-top: 0.75rem;
      padding-top: 0.75rem;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    @media (min-width: 992px) {
      .navbar-menu__cta {
        margin-top: 0;
        margin-left: 0.75rem;
        padding-top: 0;
        border-top: none;
      }
    }

    .navbar-menu__cta .btn-cta {
      width: 100%;
    }

    @media (min-width: 992px) {
      .navbar-menu__cta .btn-cta {
        width: auto;
      }
    }

    /* ── Hero content ── */
    .hero-content {
      flex: 1 1 auto;
      min-height: 0;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: stretch;
      padding: clamp(1rem, 2.5vh, 2.25rem) 0 clamp(1.5rem, 4vh, 4rem);
      padding-left: max(var(--hero-px), env(safe-area-inset-left, 0px));
      padding-right: max(var(--hero-px), env(safe-area-inset-right, 0px));
    }

    .hero-content > .row {
      width: 100%;
      margin-inline: 0;
      --bs-gutter-x: 0;
    }

    .hero-content > .row > [class*="col-"] {
      padding-inline: 0;
    }

    .hero-content__block {
      max-width: 100%;
      min-height: 0;
    }

    @media (min-width: 992px) {
      .hero-content {
        padding-top: clamp(1.25rem, 3vh, 3rem);
        padding-bottom: clamp(2rem, 5vh, 5.5rem);
      }
    }

    @media (max-height: 720px) {
      .hero-title {
        font-size: clamp(1.75rem, 4.2vw, 2.75rem);
        margin-bottom: 0.875rem;
      }

      .hero-subtitle {
        margin-bottom: 0.875rem;
      }

      .hero-subtitle--secondary {
        margin-bottom: 1.125rem;
      }

      .hero-trust-list {
        gap: 0.4rem;
        margin-bottom: 1.125rem;
      }

      .hero-actions {
        gap: 0.625rem;
      }
    }

    @media (max-height: 580px) {
      .hero-subtitle--secondary {
        display: none;
      }

      .hero-trust-list li {
        font-size: 0.875rem;
      }

      .hero-content {
        padding-top: 0.75rem;
        padding-bottom: 1rem;
      }
    }

    .hero-title {
      font-size: clamp(2.125rem, 4.8vw, 3.25rem);
      line-height: 1.16;
      margin-bottom: 1.25rem;
      color: #fff;
    }

    .hero-title__accent {
      display: block;
      color: var(--accent);
      font-size: clamp(1.25rem, 2.5vw, 1.75rem);
      font-weight: 600;
      line-height: 1.38;
      margin-top: 0.625rem;
    }

    .hero-subtitle {
      font-size: clamp(1.0625rem, 1.9vw, 1.3125rem);
      line-height: var(--line-height-body);
      font-weight: 400;
      color: rgba(255, 255, 255, 0.94);
      max-width: 40rem;
      margin-bottom: 1.25rem;
    }

    .hero-subtitle--secondary {
      font-size: clamp(1rem, 1.6vw, 1.125rem);
      line-height: var(--line-height-body);
      color: rgba(255, 255, 255, 0.86);
      margin-bottom: 1.75rem;
    }

    .hero-trust-list {
      list-style: none;
      padding: 0;
      margin: 0 0 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
    }

    .hero-trust-list li {
      position: relative;
      padding-left: 1.5rem;
      font-size: var(--font-size-sm);
      font-weight: 500;
      color: rgba(255, 255, 255, 0.95);
      line-height: 1.55;
    }

    .hero-trust-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--accent);
      font-weight: 700;
    }

    .hero-trust {
      display: inline-flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1.125rem;
      margin-bottom: 1.75rem;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 6px;
      font-size: 0.875rem;
      color: rgba(255, 255, 255, 0.9);
    }

    .hero-trust strong {
      font-family: var(--font-heading);
      font-size: 1.15em;
      font-weight: 700;
      color: var(--accent);
    }

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

    .hero-trust-divider {
      width: 1px;
      height: 1.25rem;
      background: rgba(255, 255, 255, 0.25);
    }

    @media (max-width: 991.98px) {
      .navbar-menu.open {
        display: flex;
        background: #1a2530;
        margin-top: 1rem;
        padding: 0.5rem 0.35rem 1rem;
        border-radius: 6px;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .navbar-custom.scrolled .navbar-menu.open {
        background: #ffffff;
        border-color: var(--border-subtle);
        box-shadow: var(--shadow-md);
      }
    }

    .hero-spacer {
      display: none;
    }


    /* â”€â”€ CTA Button â”€â”€ */
    .btn-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.95rem 1.75rem;
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--navy);
      background-color: var(--accent);
      border: none;
      border-radius: 6px;
      text-decoration: none;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .btn-cta:hover,
    .btn-cta:focus {
      background-color: var(--accent-hover);
      color: var(--navy);
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(197, 168, 128, 0.35);
    }

    .btn-cta:disabled,
    .btn-cta[disabled] {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .btn-cta:disabled:hover,
    .btn-cta[disabled]:hover {
      background-color: var(--accent);
      transform: none;
      box-shadow: none;
    }

    .btn-cta--lg {
      padding: 0.875rem 1.75rem;
      font-size: 0.9375rem;
    }

    .btn-cta svg,
    .icon-whatsapp {
      width: 1.125rem;
      height: 1.125rem;
      flex-shrink: 0;
    }

    .btn-cta-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.5rem;
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--navy);
      background: transparent;
      border: 2px solid var(--navy);
      border-radius: 6px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-cta-outline:hover,
    .btn-cta-outline:focus {
      background: var(--navy);
      color: #fff;
    }

    .btn-cta-outline--hero {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.65);
    }

    .btn-cta-outline--hero:hover,
    .btn-cta-outline--hero:focus {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      border-color: #fff;
    }

    .btn-cta-outline--dark {
      color: var(--navy);
      border-color: var(--navy);
    }

    .btn-cta-outline--dark:hover,
    .btn-cta-outline--dark:focus {
      background: var(--navy);
      color: #fff;
    }

    /* ── CTA bands (conversión) ── */
    .cta-band {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
      margin-top: 3rem;
      padding: 2rem 1.75rem;
      text-align: center;
      border-radius: 2px;
    }

    @media (min-width: 768px) {
      .cta-band {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 2rem 2.25rem;
      }
    }

    .cta-band__text {
      font-size: var(--font-size-body);
      line-height: var(--line-height-body);
      color: var(--text-body);
      margin: 0;
      max-width: 42ch;
    }

    .cta-band__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
      flex-shrink: 0;
    }

    @media (min-width: 768px) {
      .cta-band__actions {
        justify-content: flex-end;
      }
    }

    .cta-band--light {
      background: #fff;
      border: 1px solid var(--border-subtle);
      box-shadow: var(--shadow-soft);
    }

    .cta-band--accent {
      background: var(--navy);
      border: 2px solid var(--accent);
    }

    .cta-band--accent .cta-band__text {
      color: rgba(255, 255, 255, 0.9);
    }

    .studio-cta {
      margin-top: 2.5rem;
    }

    /* ── Áreas de práctica ── */
    .section-areas .container {
      max-width: 1140px;
    }

    .section-header--compact {
      margin-bottom: 3.5rem;
    }

    @media (min-width: 992px) {
      .section-header--compact {
        margin-bottom: 4.5rem;
      }
    }

    .section-header--compact h2 {
      margin-bottom: 0;
    }

    .section-header__lead,
    .section-intro {
      max-width: 42rem;
      margin: 1.125rem auto 0;
      font-size: var(--font-size-section-lead);
      line-height: var(--line-height-body);
      color: var(--text-body);
      font-weight: 400;
    }

    .practice-grid {
      --bs-gutter-x: 2rem;
      --bs-gutter-y: 2rem;
    }

    .practice-grid > [class*="col-"] {
      display: flex;
      flex-direction: column;
    }

    @media (min-width: 992px) {
      .practice-grid {
        --bs-gutter-x: 2.5rem;
        --bs-gutter-y: 2.5rem;
      }
    }

    @media (max-width: 991.98px) {
      .practice-grid {
        --bs-gutter-x: calc(var(--page-px) * 2);
        --bs-gutter-y: calc(var(--page-px) * 1.25);
      }
    }

    .practice-card {
      display: flex;
      flex-direction: column;
      flex: 1 1 auto;
      width: 100%;
      background: #fff;
      border: none;
      border-radius: 2px;
      padding: 2.5rem 2.25rem;
      height: 100%;
      box-shadow: var(--shadow-soft);
    }

    .practice-card__index {
      display: block;
      font-family: var(--font-body);
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      color: var(--accent);
      margin-bottom: 1.75rem;
    }

    .practice-card__title {
      font-family: var(--font-heading);
      font-size: var(--font-size-card-title);
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1rem;
      line-height: var(--line-height-tight);
    }

    @media (min-width: 992px) {
      .practice-card__title {
        min-height: 2.7em;
        font-size: 1.3125rem;
      }
    }

    .practice-card__text {
      font-size: var(--font-size-body);
      line-height: var(--line-height-body);
      color: var(--text-body);
      margin: 0 0 1.25rem;
      max-width: none;
      flex: 1 1 auto;
    }

    .practice-card__link {
      margin-top: auto;
      align-self: flex-start;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--navy);
      text-decoration: none;
      border-bottom: 1px solid var(--accent);
      padding-bottom: 2px;
      transition: color 0.3s ease, border-color 0.3s ease;
    }

    .practice-card__link:hover {
      color: var(--accent-hover);
      border-color: var(--navy);
    }

    /* â”€â”€ Process steps â”€â”€ */
    .step-item {
      text-align: center;
      padding: 0 1rem;
    }

    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--navy);
      border: 1px solid var(--border-subtle);
      border-radius: 50%;
      margin-bottom: 1.25rem;
    }

    .step-item h3 {
      font-size: var(--font-size-card-title);
      margin-bottom: 0.875rem;
      color: var(--navy);
    }

    .step-item p {
      font-size: var(--font-size-body);
      line-height: var(--line-height-body);
      max-width: 280px;
      margin: 0 auto;
      color: var(--text-body);
    }

    .step-divider {
      display: none;
    }

    @media (min-width: 768px) {
      .step-divider {
        display: block;
        width: 1px;
        background: var(--border-subtle);
        align-self: stretch;
        min-height: 120px;
        margin: 2rem 0;
      }
    }

    /* ── Estudio ── */
    .studio-intro {
      font-size: var(--font-size-section-lead);
      line-height: var(--line-height-body);
      color: var(--text-body);
      max-width: 32rem;
      margin-bottom: 0;
    }

    .section-header--center .section-intro,
    .section-header--center .section-header__lead {
      text-align: center;
    }

    .studio-highlights {
      max-width: 960px;
      margin: 0 auto 3.5rem;
    }

    @media (min-width: 992px) {
      .studio-highlights {
        margin-bottom: 4.5rem;
      }
    }

    .studio-stat {
      background: #fff;
      border-top: 3px solid var(--accent);
      padding: 2rem 1.5rem;
      text-align: center;
      height: 100%;
      box-shadow: var(--shadow-soft);
    }

    .studio-stat__value {
      display: block;
      font-family: var(--font-heading);
      font-size: 1.3125rem;
      font-weight: 700;
      color: var(--navy);
      line-height: var(--line-height-tight);
      margin-bottom: 0.875rem;
    }

    .studio-stat__label {
      display: block;
      font-size: var(--font-size-body);
      line-height: var(--line-height-body);
      color: var(--text-body);
    }

    /* ── Situaciones ── */
    .situation-card {
      background: #fff;
      border-left: 3px solid var(--accent);
      border-radius: 2px;
      padding: 1.75rem 1.5rem;
      height: 100%;
      box-shadow: var(--shadow-soft);
    }

    .situation-card__title {
      font-family: var(--font-heading);
      font-size: var(--font-size-card-title);
      font-weight: 700;
      color: var(--navy);
      line-height: var(--line-height-tight);
      margin-bottom: 0.875rem;
    }

    .situation-card__text {
      font-size: var(--font-size-body);
      line-height: var(--line-height-body);
      color: var(--text-body);
      margin: 0;
    }

    .situation-cta {
      margin-top: 2.5rem;
    }

    /* ── Casos estáticos ── */
    .cases-grid {
      max-width: 960px;
      margin: 0 auto;
    }

    .case-card--static {
      flex: none;
      width: 100%;
      height: 100%;
      min-height: 220px;
    }

    /* ── Sobre Gabriela ── */
    .section-about {
      position: relative;
      z-index: 2;
      overflow: visible;
    }

    .about-section__header {
      margin-bottom: clamp(2rem, 4vw, 2.75rem);
    }

    .about-layout {
      max-width: 1080px;
      margin-inline: auto;
    }

    @media (min-width: 992px) {
      .about-block-col {
        padding-right: clamp(1rem, 3vw, 2.5rem);
        padding-bottom: 0.25rem;
      }

      .about-portrait-col {
        display: flex;
        justify-content: center;
      }
    }

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

    .about-block__text {
      font-size: var(--font-size-body);
      line-height: var(--line-height-body);
      color: var(--text-body);
      margin-bottom: 1.25rem;
    }

    .about-block__text:last-child {
      margin-bottom: 0;
    }

    .about-portrait {
      margin: 0;
      padding: 0;
      width: 100%;
      max-width: min(100%, 15.5rem);
      margin-inline: auto;
      margin-bottom: -2rem;
      position: relative;
      z-index: 3;
    }

    @media (min-width: 576px) {
      .about-portrait {
        max-width: min(100%, 17rem);
        margin-bottom: -2.25rem;
      }
    }

    @media (min-width: 992px) {
      .about-portrait {
        max-width: min(100%, 18.5rem);
        margin-inline: auto;
        margin-bottom: -2.5rem;
      }
    }

    @media (min-width: 1200px) {
      .about-portrait {
        max-width: min(100%, 19.5rem);
        margin-bottom: -2.75rem;
      }
    }

    .about-portrait__stage {
      position: relative;
      width: 100%;
      padding-top: clamp(1.25rem, 9%, 2.25rem);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .about-portrait__stage::before {
      content: "";
      position: absolute;
      z-index: 0;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 90%;
      aspect-ratio: 1;
      border-radius: 50%;
      background: var(--accent);
      box-shadow:
        0 12px 32px rgba(197, 168, 128, 0.2),
        inset 0 0 0 1px rgba(26, 37, 48, 0.06);
    }

    .about-portrait__img {
      position: relative;
      z-index: 1;
      display: block;
      width: 90%;
      max-width: 100%;
      height: auto;
      margin: 0 auto;
      padding: 0;
      border: none;
      border-radius: 0;
      box-shadow: none;
      background: none;
      object-fit: contain;
      object-position: bottom center;
    }

    #faq {
      position: relative;
      z-index: 1;
    }

    @media (min-width: 992px) {
      #faq {
        padding-top: calc(var(--section-py) + 2rem);
      }
    }

    @media (max-width: 991.98px) {
      .about-block {
        text-align: center;
      }
    }

    .studio-coverage {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      max-width: 900px;
      margin: 0 auto;
      padding: 2.5rem 2rem;
      background: #fff;
      border: 2px solid var(--accent);
      border-radius: 2px;
    }

    @media (min-width: 768px) {
      .studio-coverage {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0;
      }

      .studio-coverage__block {
        padding: 2.5rem 2.25rem;
      }

      .studio-coverage__block:first-child {
        border-right: 1px solid var(--border-subtle);
      }
    }

    .studio-coverage__title {
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1.25rem;
    }

    .studio-coverage__text {
      font-size: var(--font-size-body);
      line-height: var(--line-height-body);
      color: var(--text-body);
      margin: 0;
      max-width: 28ch;
    }

    .studio-locations {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .studio-locations span {
      display: inline-block;
      padding: 0.45rem 0.85rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--navy);
      background: var(--bg-main);
      border: 1px solid var(--border-subtle);
      border-radius: 2px;
    }

    /* ── Testimonios y casos (carrusel) ── */
    .section-cases .container {
      margin-bottom: 2.5rem;
    }

    @media (min-width: 992px) {
      .section-cases .container {
        margin-bottom: 3rem;
      }
    }

    .cases-carousel {
      position: relative;
      width: 100%;
    }

    .cases-carousel__btn {
      display: none;
      position: absolute;
      top: 50%;
      z-index: 3;
      transform: translateY(-50%);
      width: 2.75rem;
      height: 2.75rem;
      padding: 0;
      border: 1px solid var(--border-subtle);
      border-radius: 50%;
      background: #fff;
      color: var(--navy);
      box-shadow: var(--shadow-md);
      cursor: pointer;
      transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
    }

    .cases-carousel__btn svg {
      width: 1.125rem;
      height: 1.125rem;
    }

    .cases-carousel__btn:hover,
    .cases-carousel__btn:focus-visible {
      background: var(--navy);
      border-color: var(--navy);
      color: #fff;
    }

    .cases-carousel__btn--prev {
      left: max(0.35rem, env(safe-area-inset-left, 0px));
    }

    .cases-carousel__btn--next {
      right: max(0.35rem, env(safe-area-inset-right, 0px));
    }

    @media (min-width: 768px) {
      .cases-carousel__btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .cases-carousel__btn--prev {
        left: 1rem;
      }

      .cases-carousel__btn--next {
        right: 1rem;
      }
    }

    .cases-slider {
      overflow: hidden;
      width: 100%;
      -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 5%,
        #000 95%,
        transparent 100%
      );
      mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 5%,
        #000 95%,
        transparent 100%
      );
    }

    .cases-slider__track {
      display: flex;
      width: max-content;
      will-change: transform;
    }

    @media (prefers-reduced-motion: reduce) {
      .cases-slider {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        mask-image: none;
        -webkit-mask-image: none;
        padding: 0 var(--page-px) 0.5rem;
      }

      .cases-slider__track {
        flex-wrap: nowrap;
        width: max-content;
        transform: none !important;
      }

      .cases-slider__group {
        display: flex;
        padding-right: 0;
      }

      .cases-slider__group[aria-hidden="true"] {
        display: none;
      }

      .case-card {
        scroll-snap-align: start;
        flex: 0 0 min(340px, 88vw);
        width: min(340px, 88vw);
      }

      .cases-carousel__btn {
        display: none;
      }
    }

    .cases-slider__group {
      display: flex;
      align-items: stretch;
      gap: 1.5rem;
      padding-right: 1.5rem;
    }

    .case-card {
      flex: 0 0 340px;
      width: 340px;
      background: #fff;
      border: 2px solid var(--accent);
      border-radius: 2px;
      padding: 1.75rem 1.5rem 1.5rem;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
    }

    @media (min-width: 768px) {
      .case-card {
        flex: 0 0 380px;
        width: 380px;
        padding: 2rem 1.75rem 1.65rem;
      }
    }

    .case-card__quote {
      margin: 0;
      padding: 0;
      border: none;
      font-size: var(--font-size-body);
      line-height: var(--line-height-body);
      color: var(--text-body);
      font-style: normal;
      flex-shrink: 0;
    }

    .case-card__result {
      margin: 1.125rem 0 0;
      padding: 0.875rem 1rem;
      background: rgba(197, 168, 128, 0.14);
      border-left: 3px solid var(--accent);
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .case-card__result-label {
      display: block;
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.35rem;
    }

    .case-card__result-text {
      margin: 0;
      font-size: var(--font-size-sm);
      font-weight: 600;
      line-height: 1.55;
      color: var(--navy);
    }

    .case-card__meta {
      margin-top: auto;
      padding-top: 1.125rem;
      flex-shrink: 0;
    }

    .case-card__name {
      margin: 0 0 0.35rem;
      font-family: var(--font-heading);
      font-size: 1.0625rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;
    }

    .case-card__type {
      display: block;
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .case-card__area {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.25rem;
    }

    /* â”€â”€ FAQ â”€â”€ */
    .faq-accordion .accordion-item {
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--border-subtle);
    }

    .faq-accordion .accordion-button {
      font-family: var(--font-heading);
      font-size: var(--font-size-card-title);
      font-weight: 700;
      color: var(--text-title);
      background: transparent;
      box-shadow: none;
      padding: 1.5rem 0.75rem;
      line-height: var(--line-height-tight);
    }

    .faq-accordion .accordion-button:not(.collapsed) {
      color: var(--navy);
      background: transparent;
    }

    .faq-accordion .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a2530'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    .faq-accordion .accordion-body {
      padding: 0 0.75rem 1.5rem;
      font-size: var(--font-size-body);
      line-height: var(--line-height-body);
      color: var(--text-body);
    }

    /* ── Contacto ── */
    .contact-section {
      background: var(--navy);
      color: rgba(255, 255, 255, 0.88);
    }

    .contact-section__container {
      max-width: 720px;
    }

    .contact-section__header h2 {
      color: #fff;
      font-size: clamp(1.75rem, 3.2vw, 2.375rem);
    }

    .contact-section__eyebrow {
      color: var(--accent);
    }

    .contact-intro {
      font-size: var(--font-size-section-lead);
      line-height: var(--line-height-body);
      color: rgba(255, 255, 255, 0.9);
      max-width: 32rem;
      margin-bottom: 0;
    }

    .contact-trust {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem 1.5rem;
      list-style: none;
      padding: 0;
      margin: 1.5rem 0 2rem;
    }

    .contact-trust li {
      font-size: var(--font-size-sm);
      font-weight: 500;
      color: rgba(255, 255, 255, 0.85);
      padding-left: 1.125rem;
      position: relative;
    }

    .contact-trust li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.45em;
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 1px;
    }

    .faq-cta {
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border-subtle);
      text-align: center;
    }

    .faq-cta__text {
      font-size: var(--font-size-section-lead);
      font-weight: 500;
      color: var(--text-body);
      margin-bottom: 1.25rem;
    }

    .contact-card {
      background: #fff;
      border: 2px solid var(--accent);
      border-radius: 2px;
      padding: 2.25rem 2rem;
      margin-bottom: 2rem;
      box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    }

    @media (min-width: 768px) {
      .contact-card {
        padding: 2.75rem 2.5rem;
      }
    }

    .contact-form__row {
      margin-bottom: 0.5rem;
    }

    .form__group {
      margin-bottom: 0;
    }

    .form__group--last {
      margin-bottom: 0.25rem;
    }

    .contact-form__submit {
      margin-top: 1.75rem;
    }

    .contact-direct {
      text-align: center;
      font-size: var(--font-size-sm);
      color: rgba(255, 255, 255, 0.82);
      margin: 0;
      max-width: 24rem;
    }

    .contact-direct__link {
      color: var(--accent);
      font-weight: 600;
      text-decoration: none;
      margin-left: 0.35rem;
      transition: color 0.3s ease;
    }

    .contact-direct__link:hover {
      color: #fff;
    }

    .form-label-custom {
      font-size: 0.8125rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .form-control-custom,
    .form-select-custom {
      display: block;
      width: 100%;
      padding: 0.875rem 0.75rem;
      font-size: var(--font-size-body);
      color: var(--text-title);
      background: transparent;
      border: none;
      border-bottom: 1px solid var(--border-subtle);
      border-radius: 0;
      transition: border-color 0.3s ease;
    }

    .form-control-custom:focus,
    .form-select-custom:focus {
      outline: none;
      border-bottom-color: var(--accent);
      box-shadow: none;
    }

    .form-control-custom.is-invalid,
    .form-select-custom.is-invalid {
      border-bottom-color: #dc3545;
    }

    .invalid-feedback-custom {
      display: none;
      font-size: 0.8125rem;
      color: #dc3545;
      margin-top: 0.35rem;
    }

    .is-invalid ~ .invalid-feedback-custom {
      display: block;
    }

    .form-select-custom {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23495057' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 0 center;
      background-size: 14px;
      padding-right: 1.5rem;
    }

    .form-note {
      font-size: 0.8125rem;
      color: var(--text-body);
      margin-top: 1rem;
      line-height: 1.6;
    }

    /* ── Footer ── */
    .site-footer {
      padding: 3.5rem 0 2rem;
      border-top: 1px solid var(--border-subtle);
      background: var(--bg-main);
    }

    .site-footer__top {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid var(--border-subtle);
    }

    @media (min-width: 768px) {
      .site-footer__top {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 2rem;
      }
    }

    .site-footer__name {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.35rem;
    }

    .site-footer__tagline {
      font-size: var(--font-size-sm);
      line-height: var(--line-height-body);
      color: var(--text-body);
      margin-bottom: 1.25rem;
    }

    .site-footer__cta,
    .site-footer__cta-secondary {
      display: inline-flex;
      margin-top: 0.25rem;
    }

    .site-footer__cta-secondary {
      margin-left: 0.75rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--navy);
      text-decoration: none;
      border-bottom: 1px solid var(--accent);
      padding-bottom: 1px;
    }

    .site-footer__cta-secondary:hover {
      color: var(--accent-hover);
    }

    @media (max-width: 767px) {
      .site-footer__brand .site-footer__cta-secondary {
        display: block;
        margin: 0.75rem 0 0;
      }
    }

    .site-footer__label {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .site-footer__links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .site-footer__links li {
      margin-bottom: 0.5rem;
    }

    .site-footer__links a {
      font-size: 0.9375rem;
      color: var(--text-body);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .site-footer__links a:hover {
      color: var(--navy);
    }

    .site-footer__social {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      color: var(--navy);
      background: #fff;
      border: 2px solid var(--accent);
      border-radius: 2px;
      transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s var(--ease-out);
    }

    .social-link:hover {
      background: var(--accent);
      color: var(--navy);
      transform: translateY(-2px);
    }

    .social-link svg {
      width: 20px;
      height: 20px;
    }

    .site-footer__bottom {
      padding-top: 1.75rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .site-footer__bottom {
        text-align: left;
      }
    }

    .site-footer__copy {
      font-size: 0.8125rem;
      color: var(--text-body);
      margin: 0;
      opacity: 0.75;
    }

    /* ── Section headers ── */
    .section-header {
      max-width: 38rem;
      margin-bottom: 3rem;
    }

    .section-header--center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-header h2 {
      font-size: clamp(1.75rem, 3.2vw, 2.375rem);
      margin-bottom: 0;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
    }

    /* â”€â”€ Divider accent â”€â”€ */
    .accent-line {
      width: 40px;
      height: 2px;
      background: var(--accent);
      margin-bottom: 1.25rem;
    }

    .section-header--center .accent-line {
      margin-left: auto;
      margin-right: auto;
    }

    /* ── Descanso visual ── */
    .visual-pause {
      position: relative;
      min-height: 52vh;
      min-height: 52dvh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5rem 0;
      overflow: hidden;
    }

    @media (min-width: 992px) {
      .visual-pause {
        min-height: 58vh;
        padding: 6.5rem 0;
      }
    }

    .visual-pause__bg {
      position: absolute;
      inset: 0;
      background: url("../assets/images/carilo-hero-mobile.jpg") center center / cover no-repeat;
      z-index: 0;
    }

    @media (min-width: 768px) {
      .visual-pause__bg {
        background-image: url("../assets/images/carilo-hero.jpg");
      }
    }

    .visual-pause__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(26, 37, 48, 0.82) 0%,
        rgba(26, 37, 48, 0.68) 50%,
        rgba(26, 37, 48, 0.82) 100%
      );
      z-index: 1;
    }

    .visual-pause__inner {
      position: relative;
      z-index: 2;
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    .visual-pause__eyebrow {
      font-family: var(--font-body);
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 2rem;
    }

    .visual-pause__quote {
      font-family: var(--font-heading);
      font-size: clamp(1.5rem, 3.5vw, 2.25rem);
      font-weight: 700;
      line-height: 1.45;
      color: #fff;
      margin: 0 0 2rem;
      padding: 0;
      border: none;
    }

    .visual-pause__author {
      font-family: var(--font-body);
      font-size: 0.9375rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: rgba(255, 255, 255, 0.75);
      margin: 0;
    }

/* ── Utilidades (antes inline) ── */
.solution-highlight {
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--text-body);
}
.divider-subtle { border-color: var(--border-subtle); opacity: 1; }
textarea.form-control-custom { resize: vertical; min-height: 80px; }
.btn-cta--sm { padding: 0.65rem 1.25rem; font-size: 0.875rem; }

/* ── Espaciado lateral global ── */
@media (max-width: 991.98px) {
  :root {
    --page-px: 1.375rem;
    --hero-px: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --page-px: 1.25rem;
    --hero-px: 1.375rem;
  }

  .section-padding {
    padding-top: calc(var(--section-py-mobile) - 8px);
    padding-bottom: calc(var(--section-py-mobile) - 8px);
  }

  .container > .row.g-4,
  .container > .row.g-lg-5,
  .container > .row.g-xl-5,
  .container .studio-highlights.g-4 {
    --bs-gutter-x: calc(var(--page-px) * 2);
    --bs-gutter-y: calc(var(--page-px) * 1.25);
  }

  .practice-card {
    padding: 1.85rem 1.35rem;
  }

  .cta-band {
    padding: 1.75rem 1.35rem;
  }

  .studio-stat {
    padding: 1.75rem 1.35rem;
  }

  .studio-coverage {
    padding: 2rem 1.35rem;
  }

  .contact-card {
    padding: 2rem 1.35rem;
  }

  .hero-trust-list {
    margin-bottom: 1.5rem;
  }

  .situation-card {
    padding: 1.5rem 1.25rem;
  }

  .studio-stat__value {
    font-size: 1.1875rem;
  }

  .hero-content {
    padding-bottom: clamp(1.25rem, 3vh, 3.5rem);
  }

  .hero-title {
    padding-inline: 0;
  }

  .hero-subtitle {
    padding-inline: 0;
  }

  .step-item {
    padding: 0;
  }

  .cases-slider {
    padding-left: var(--page-px);
    -webkit-mask-image: linear-gradient(
      90deg,
      #000 0%,
      #000 calc(100% - var(--page-px)),
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      #000 0%,
      #000 calc(100% - var(--page-px)),
      transparent 100%
    );
  }

  .site-footer {
    padding-top: 3rem;
  }

  .whatsapp-float {
    bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    right: max(1.25rem, env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 575.98px) {
  :root {
    --page-px: 1.125rem;
    --hero-px: 1.25rem;
  }

  .hero-title {
    font-size: clamp(1.625rem, 7.2vw, 2.125rem);
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.0625rem;
    line-height: var(--line-height-body);
  }

  .hero-subtitle--secondary {
    font-size: 1rem;
    line-height: var(--line-height-body);
  }

  .hero-content {
    padding-top: clamp(0.75rem, 2vh, 1rem);
    padding-bottom: clamp(1rem, 2.5vh, 2.75rem);
  }

  .navbar-custom {
    padding: 0.85rem 0;
  }

  .navbar-custom.scrolled {
    padding: 0.55rem 0;
  }

  .navbar-custom.scrolled .navbar-logo {
    height: 44px;
    max-width: min(calc(100vw - 6.5rem), 190px);
  }

  .hero-actions .btn-cta,
  .hero-actions .btn-cta-outline--hero {
    width: 100%;
    justify-content: center;
  }

  .navbar-menu__link {
    padding: 0.85rem 0.75rem;
  }

  .faq-accordion .accordion-button {
    padding: 1.25rem 0.5rem;
    font-size: 1.125rem;
  }

  .faq-accordion .accordion-body {
    padding: 0 0.5rem 1.25rem;
  }
}

/* ── Botón flotante WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: var(--accent);
  color: var(--navy);
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(197, 168, 128, 0.45);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    visibility 0s linear 0.4s,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out),
    visibility 0s,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 8px 28px rgba(197, 168, 128, 0.55);
  color: var(--navy);
}

.icon-whatsapp--float {
  width: 1.65rem;
  height: 1.65rem;
  position: relative;
  z-index: 2;
}

.whatsapp-float__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(197, 168, 128, 0.65);
  animation: whatsapp-pulse 2s var(--ease-smooth) infinite;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.35);
    opacity: 0;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (max-width: 767.98px) {
  .reveal,
  .reveal-stagger > *,
  .hero-content__block > * {
    transition-duration: 0.45s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float__ring {
    animation: none;
  }

  .cases-slider__track {
    animation: none;
  }
}

