﻿:root {
      --mint: #BFD4F5;
      --lavender: #C7C2E6;
      --peach: #FFD4D5;
      --ink: #172026;
      --muted: #66737d;
      --white: #ffffff;
      --panel: rgba(255, 255, 255, 0.76);
      --line: rgba(23, 32, 38, 0.11);
      --shadow: 0 26px 70px rgba(38, 52, 63, 0.16);
      --radius: 28px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 100px;
    }

    section[id] {
      scroll-margin-top: 100px;
    }

    body {
      margin: 0;
      font-family: "Inter", Arial, sans-serif;
      color: var(--ink);
      background: linear-gradient(
        180deg,
        #FFD4D5 0%,
        #ffffff 18%,
        #C7C2E6 36%,
        #ffffff 54%,
        #BFD4F5 72%,
        #ffffff 100%
      );
      background-size: 100% 108%;
      background-position: center top;
      animation: pastel-background 18s ease-in-out infinite alternate;
      min-height: 100vh;
    }

    body.modal-open {
      overflow: hidden;
    }

    @keyframes pastel-background {
      0% {
        background-position: center top;
      }

      50% {
        background-position: center 3%;
      }

      100% {
        background-position: center bottom;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      body {
        animation: none;
      }

      .service-card,
      .modality-card {
        transition: none;
      }

      .service-card:hover,
      .modality-card:hover {
        transform: none;
      }
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    .shell {
      width: min(1140px, calc(100% - 40px));
      margin: 0 auto;
    }

    .nav {
      position: fixed;
      z-index: 30;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      width: min(1140px, calc(100% - 32px));
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 14px 12px 18px;
      border: 1px solid rgba(255, 255, 255, 0.72);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.68);
      box-shadow: 0 18px 55px rgba(31, 43, 54, 0.12);
      backdrop-filter: blur(22px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
    }

    .brand-logo {
      width: 205px;
      height: 42px;
      object-fit: contain;
      object-position: left center;
    }

    .icon svg,
    .social svg,
    .whatsapp svg {
      width: 19px;
      height: 19px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 4px;
      color: #394852;
      font-size: 14px;
      font-weight: 600;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .menu a {
      padding: 10px 12px;
      border-radius: 999px;
    }

    .menu a:hover {
      background: rgba(23, 32, 38, 0.06);
    }

    .nav-cta {
      padding: 11px 16px;
      border-radius: 999px;
      color: var(--white);
      background: #7697CE;
      font-size: 14px;
      font-weight: 700;
      box-shadow: 0 12px 30px rgba(23, 32, 38, 0.2);
      white-space: nowrap;
    }

    .hero {
      min-height: 100svh;
      padding: 104px 0 20px;
      display: grid;
      align-items: center;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: calc(100svh - 124px);
      padding: 8px 0;
    }

    .eyebrow {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.58);
      color: #53636c;
      font-size: 13px;
      font-weight: 700;
      backdrop-filter: blur(16px);
    }

    h1 {
      margin: 18px 0 14px;
      max-width: 760px;
      font-size: clamp(40px, 6.4vw, 74px);
      line-height: 0.96;
      letter-spacing: 0;
    }

    .lead {
      max-width: 650px;
      margin: 0;
      color: #55646d;
      font-size: clamp(16px, 1.8vw, 20px);
      line-height: 1.52;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 52px;
      padding: 0 20px;
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      font: inherit;
      font-weight: 800;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button:disabled {
      cursor: wait;
      opacity: 0.7;
      transform: none;
    }

    .button.primary {
      color: var(--white);
      background: #7697CE;
      box-shadow: 0 18px 40px rgba(118, 151, 206, 0.28);
    }

    .button.secondary {
      color: #25313a;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(23, 32, 38, 0.1);
    }

    .social-row {
      display: flex;
      gap: 10px;
      margin-top: 24px;
    }

    .social {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(23, 32, 38, 0.1);
      border-radius: 50%;
      color: #28343c;
      background: rgba(255, 255, 255, 0.66);
      backdrop-filter: blur(16px);
      transition: transform 180ms ease, background 180ms ease;
    }

    .social:hover {
      transform: translateY(-2px);
      background: var(--white);
    }

    .hero-panel {
      position: relative;
      min-height: 0;
      height: auto;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.62);
      box-shadow: var(--shadow);
      backdrop-filter: blur(24px);
    }

    .hero-image {
      height: clamp(260px, 40vh, 340px);
      min-height: 260px;
      background:
        linear-gradient(180deg, rgba(23, 32, 38, 0.02), rgba(23, 32, 38, 0.24)),
        url("../imagenes/hero-terapia.png") center/cover;
    }

    .form-card {
      padding: 22px 22px 24px;
    }

    .form-card h2,
    .section-title h2,
    .contact h2 {
      margin: 0;
      font-size: clamp(26px, 3.4vw, 38px);
      line-height: 1.06;
      letter-spacing: 0;
    }

    .form-card p {
      margin: 8px 0 16px;
      color: var(--muted);
      line-height: 1.45;
    }

    .hero-panel form {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .hero-panel select,
    .hero-panel .button {
      grid-column: span 1;
    }

    .hero-panel .button {
      min-height: 50px;
      color: var(--white);
      background: #7697CE;
      box-shadow: 0 16px 34px rgba(118, 151, 206, 0.28);
      border: 1px solid rgba(255, 255, 255, 0.82);
    }

    .hero-panel .form-message {
      grid-column: 1 / -1;
    }

    form {
      display: grid;
      gap: 12px;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 50px;
      padding: 13px 15px;
      border: 1px solid rgba(23, 32, 38, 0.12);
      border-radius: 16px;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.78);
      font: inherit;
      outline: none;
    }

    textarea {
      min-height: 116px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(23, 32, 38, 0.32);
      box-shadow: 0 0 0 4px rgba(197, 220, 255, 0.52);
    }

    .field-error {
      border-color: #c94f57;
      box-shadow: 0 0 0 4px rgba(255, 212, 213, 0.48);
    }

    .form-message {
      display: none;
      margin: 2px 0 0;
      color: #a43f47;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.4;
    }

    .form-message.visible {
      display: block;
    }

    .section {
      padding: 82px 0;
    }

    .section-title {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.55fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 30px;
    }

    .section-title p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.6;
    }

    .section-title.stacked {
      display: block;
      max-width: 760px;
    }

    .section-title.stacked p {
      margin-top: 12px;
      max-width: 680px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 16px;
    }

    .bio-panel {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
      gap: 20px;
      align-items: stretch;
      margin-bottom: 18px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.58);
      box-shadow: 0 18px 46px rgba(31, 43, 54, 0.1);
      backdrop-filter: blur(18px);
    }

    .bio-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 18px;
    }

    .bio-copy span {
      width: fit-content;
      margin-bottom: 14px;
      padding: 7px 11px;
      border-radius: 999px;
      color: #44545d;
      background: rgba(197, 220, 255, 0.68);
      font-size: 13px;
      font-weight: 800;
    }

    .bio-copy h3 {
      margin: 0 0 12px;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.04;
    }

    .bio-copy p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .bio-photo {
      min-height: 360px;
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(23, 32, 38, 0.02), rgba(23, 32, 38, 0.14)),
        url("../imagenes/bio-psicologa.png") center/cover;
    }

    .about-card,
    .service-card {
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.64);
      box-shadow: 0 18px 46px rgba(31, 43, 54, 0.1);
      backdrop-filter: blur(18px);
    }

    .about-card {
      padding: 24px;
    }

    .about-card strong {
      display: block;
      font-size: 34px;
      line-height: 1;
    }

    .about-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
    }

    .about-icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: #30496e;
      background: linear-gradient(135deg, var(--mint), var(--lavender));
    }

    .about-card:nth-child(2) .about-icon {
      color: #5a4868;
      background: linear-gradient(135deg, var(--lavender), var(--peach));
    }

    .about-card:nth-child(3) .about-icon {
      color: #54424b;
      background: linear-gradient(135deg, var(--peach), var(--mint));
    }

    .about-icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .about-card h3,
    .service-card h3 {
      margin: 0 0 10px;
      font-size: 20px;
    }

    .about-card p,
    .service-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.55;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .service-card {
      min-height: 250px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .service-card:hover {
      transform: translateY(-7px);
      border-color: rgba(118, 151, 206, 0.32);
      box-shadow: 0 26px 58px rgba(71, 88, 116, 0.16);
    }

    .icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      border-radius: 18px;
      color: #1f3136;
      background: linear-gradient(135deg, var(--mint), var(--peach));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
    }

    .service-card:nth-child(2) .icon {
      background: linear-gradient(135deg, var(--lavender), var(--mint));
    }

    .service-card:nth-child(3) .icon {
      background: linear-gradient(135deg, var(--peach), var(--lavender));
    }

    .service-card:nth-child(4) .icon {
      background: linear-gradient(135deg, var(--mint), var(--peach));
    }

    .service-card:nth-child(5) .icon {
      background: linear-gradient(135deg, var(--lavender), var(--mint));
    }

    .service-card:nth-child(6) .icon {
      background: linear-gradient(135deg, var(--peach), var(--lavender));
    }

    .service-card:nth-child(7) .icon {
      background: linear-gradient(135deg, var(--mint), var(--lavender));
    }

    .modalities-section {
      padding-top: 30px;
    }

    .modalities-heading {
      max-width: 850px;
    }

    .modalities-heading h2 {
      max-width: 820px;
    }

    .modalities {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .modality-card {
      display: grid;
      grid-template-columns: 76px minmax(0, 1fr);
      gap: 22px;
      align-items: center;
      min-height: 210px;
      padding: 28px;
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.64);
      box-shadow: 0 18px 46px rgba(31, 43, 54, 0.1);
      backdrop-filter: blur(18px);
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .modality-card:hover {
      transform: translateY(-7px);
      border-color: rgba(118, 151, 206, 0.32);
      box-shadow: 0 26px 58px rgba(71, 88, 116, 0.16);
    }

    .modality-icon {
      width: 76px;
      height: 76px;
      display: grid;
      place-items: center;
      border-radius: 22px;
      color: #263b59;
      background: linear-gradient(135deg, var(--mint), var(--lavender));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
    }

    .modality-card:nth-child(2) .modality-icon {
      color: #56383f;
      background: linear-gradient(135deg, var(--lavender), var(--peach));
    }

    .modality-icon svg {
      width: 34px;
      height: 34px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .modality-card h3 {
      margin: 0 0 10px;
      font-size: 24px;
    }

    .modality-card p {
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.6;
    }

    .cta-band {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
      padding: 38px;
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(197, 220, 255, 0.86), rgba(199, 194, 230, 0.72), rgba(255, 212, 213, 0.78));
      box-shadow: var(--shadow);
    }

    .cta-band h2 {
      margin: 0 0 8px;
      font-size: clamp(28px, 4vw, 48px);
      line-height: 1.04;
    }

    .cta-band p {
      margin: 0;
      max-width: 620px;
      color: #46545c;
      line-height: 1.6;
    }

    .contact {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
      gap: 22px;
      align-items: stretch;
    }

    .contact-info,
    .contact-form {
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.78);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.64);
      box-shadow: 0 18px 46px rgba(31, 43, 54, 0.1);
      backdrop-filter: blur(18px);
    }

    .contact-info p {
      margin: 14px 0 26px;
      color: var(--muted);
      line-height: 1.62;
    }

    .contact-list {
      display: grid;
      gap: 14px;
      color: #46545c;
      font-weight: 600;
    }

    .reviews-section {
      padding-top: 34px;
    }

    .reviews-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 30px;
    }

    .reviews-heading .section-title {
      margin-bottom: 0;
    }

    .reviews-slider {
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr) 48px;
      gap: 16px;
      align-items: center;
    }

    .reviews-viewport {
      overflow: hidden;
      border-radius: 24px;
    }

    .reviews-track {
      display: flex;
      gap: 16px;
      transition: transform 500ms ease;
    }

    .review-card {
      flex: 0 0 calc((100% - 32px) / 3);
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 18px;
      padding: 32px;
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.72);
      box-shadow: 0 20px 54px rgba(31, 43, 54, 0.1);
      backdrop-filter: blur(18px);
    }

    @media (max-width: 900px) {
      .review-card {
        flex-basis: calc((100% - 16px) / 2);
      }
    }

    @media (max-width: 600px) {
      .review-card {
        flex-basis: 100%;
      }
    }

    .review-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }

    .review-source {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(23, 32, 38, 0.08);
      color: #55646d;
      font-size: 13px;
      font-weight: 700;
    }

    .google-glyph {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
    }

    .review-stars {
      color: #f5b400;
      font-size: 22px;
      letter-spacing: 2px;
    }

    .reviews-cta {
      display: flex;
      justify-content: center;
      margin-top: 22px;
    }

    .google-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid rgba(23, 32, 38, 0.12);
      background: rgba(255, 255, 255, 0.76);
      color: #25313a;
      font-weight: 700;
      font-size: 15px;
      box-shadow: 0 10px 26px rgba(31, 43, 54, 0.08);
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .google-link .google-glyph {
      width: 20px;
      height: 20px;
    }

    .google-link:hover {
      transform: translateY(-2px);
      background: var(--white);
      box-shadow: 0 16px 34px rgba(31, 43, 54, 0.14);
    }

    .review-card blockquote {
      margin: 0;
      font-size: 17px;
      font-weight: 500;
      line-height: 1.6;
      color: #2b3840;
      display: -webkit-box;
      -webkit-line-clamp: 7;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .review-avatar {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      color: #405f94;
      background: linear-gradient(135deg, var(--mint), var(--lavender));
      font-weight: 800;
    }

    .review-author div {
      display: grid;
      gap: 4px;
    }

    .review-author span {
      color: var(--muted);
      font-size: 14px;
    }

    .review-author small {
      margin-left: auto;
      padding: 6px 9px;
      border-radius: 999px;
      color: #6a5962;
      background: var(--peach);
      font-size: 11px;
      font-weight: 700;
    }

    .slider-control {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(23, 32, 38, 0.1);
      border-radius: 50%;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.76);
      cursor: pointer;
      transition: transform 180ms ease, background 180ms ease;
    }

    .slider-control:hover {
      transform: scale(1.06);
      background: var(--white);
    }

    .slider-control svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }

    .slider-dots button {
      width: 9px;
      height: 9px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: rgba(23, 32, 38, 0.2);
      cursor: pointer;
      transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
    }

    .slider-dots button.active {
      width: 28px;
      border-radius: 999px;
      background: #7697CE;
    }

    .inner-page {
      min-height: 100vh;
    }

    .inner-main {
      min-height: 100vh;
      padding: 130px 0 70px;
    }

    .review-form-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
      gap: 28px;
      align-items: center;
    }

    .inner-intro h1,
    .admin-reviews h1 {
      margin: 18px 0 14px;
      font-size: clamp(40px, 6vw, 68px);
      line-height: 1;
    }

    .inner-intro p {
      max-width: 540px;
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .review-form-card {
      padding: 30px;
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.7);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }

    .page-feedback {
      display: none;
      margin: 4px 0 0;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.5;
    }

    .page-feedback.success,
    .page-feedback.error {
      display: block;
    }

    .page-feedback.success {
      color: #3f6f57;
    }

    .page-feedback.error {
      color: #a43f47;
    }

    .admin-reviews .section-title {
      max-width: 760px;
    }

    #reviews-admin-list {
      display: grid;
      gap: 14px;
    }

    .admin-review {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.7);
      box-shadow: 0 14px 38px rgba(31, 43, 54, 0.08);
    }

    .admin-review h2 {
      margin: 8px 0 4px;
      font-size: 21px;
    }

    .admin-review-content > span {
      color: var(--muted);
      font-size: 14px;
    }

    .admin-review p {
      margin: 12px 0 0;
      color: #46545c;
      line-height: 1.6;
    }

    .delete-review {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border: 1px solid rgba(164, 63, 71, 0.2);
      border-radius: 999px;
      color: #a43f47;
      background: rgba(255, 212, 213, 0.5);
      cursor: pointer;
      font: inherit;
      font-weight: 700;
    }

    .delete-review svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .empty-reviews {
      padding: 36px;
      border-radius: 20px;
      text-align: center;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.64);
    }

    footer {
      padding: 34px 0 92px;
      color: #52616b;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding-top: 24px;
      border-top: 1px solid rgba(23, 32, 38, 0.12);
    }

    .footer-socials {
      display: flex;
      gap: 10px;
    }

    .whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 40;
      width: 60px;
      height: 60px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--white);
      background: #25d366;
      box-shadow: 0 18px 40px rgba(37, 211, 102, 0.34);
      transition: transform 180ms ease;
    }

    .whatsapp:hover {
      transform: translateY(-3px) scale(1.03);
    }

    .whatsapp svg {
      width: 28px;
      height: 28px;
    }

    .success-modal[hidden] {
      display: none;
    }

    .success-modal {
      position: fixed;
      z-index: 100;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 20px;
    }

    .success-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(23, 32, 38, 0.34);
      backdrop-filter: blur(10px);
    }

    .success-modal-content {
      position: relative;
      width: min(440px, 100%);
      padding: 34px;
      border: 1px solid rgba(255, 255, 255, 0.84);
      border-radius: 24px;
      text-align: center;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 30px 80px rgba(31, 43, 54, 0.24);
    }

    .success-icon {
      width: 66px;
      height: 66px;
      display: grid;
      place-items: center;
      margin: 0 auto 18px;
      border-radius: 50%;
      color: #405f94;
      background: linear-gradient(135deg, var(--mint), var(--lavender));
    }

    .success-icon svg {
      width: 32px;
      height: 32px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .success-modal-content h2 {
      margin: 0;
      font-size: 30px;
    }

    .success-modal-content p {
      margin: 12px 0 24px;
      color: var(--muted);
      line-height: 1.6;
    }

    @media (max-width: 920px) {
      .menu {
        display: none;
      }

      .hero-grid,
      .section-title,
      .contact,
      .cta-band,
      .bio-panel {
        grid-template-columns: 1fr;
      }

      .hero-copy,
      .hero-panel {
        min-height: auto;
      }

      .hero-panel {
        height: auto;
      }

      .hero-panel form {
        grid-template-columns: 1fr;
      }

      .about-grid,
      .services,
      .modalities {
        grid-template-columns: 1fr;
      }

      .review-form-layout {
        grid-template-columns: 1fr;
      }

      .cta-band {
        padding: 28px;
      }
    }

    @media (max-width: 560px) {
      .shell {
        width: min(100% - 28px, 1140px);
      }

      .nav {
        width: calc(100% - 24px);
      }

      .brand-logo {
        width: 150px;
        height: 34px;
      }

      .nav-cta {
        padding: 10px 12px;
      }

      .hero {
        padding-top: 96px;
      }

      .form-card,
      .contact-info,
      .contact-form {
        padding: 22px;
      }

      .hero-image {
        min-height: 220px;
      }

      .bio-panel {
        padding: 12px;
      }

      .bio-copy {
        padding: 10px;
      }

      .bio-photo {
        min-height: 280px;
      }

      .modality-card {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 16px;
        min-height: 0;
        padding: 22px;
      }

      .modality-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
      }

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

      .footer-inner {
        align-items: flex-start;
        flex-direction: column;
      }

      .reviews-heading {
        align-items: flex-start;
        flex-direction: column;
      }

      .reviews-slider {
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        gap: 8px;
      }

      .slider-control {
        width: 38px;
        height: 38px;
      }

      .review-card {
        min-height: 340px;
        padding: 28px 22px;
      }

      .review-card blockquote {
        font-size: 20px;
      }

      .review-author {
        align-items: flex-start;
        flex-wrap: wrap;
      }

      .review-author small {
        margin-left: 62px;
      }

      .inner-main {
        padding-top: 110px;
      }

      .review-form-card {
        padding: 22px;
      }

      .admin-review {
        grid-template-columns: 1fr;
      }

      .delete-review {
        width: fit-content;
      }
    }

