:root {
  --magenta: #cf1452;
  --magenta-dark: #9c0e3c;
  --magenta-soft: #ffe7f0;
  --ink: #24242a;
  --ink-soft: #4f4d57;
  --muted: #77727d;
  --line: #ece8ee;
  --paper: #ffffff;
  --cloud: #f8f6f8;
  --silver: #d9d6dc;
  --shadow: 0 24px 60px rgba(36, 36, 42, 0.12);
  --shadow-soft: 0 18px 38px rgba(36, 36, 42, 0.08);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  transition: top 0.25s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 38px, var(--max));
  margin-inline: auto;
}

.section-pad {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 214, 220, 0.62);
}

.nav-shell {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 58px;
  height: 58px;
  position: relative;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 25px rgba(207, 20, 82, 0.08);
}

.brand-squares,
.mini-squares {
  position: absolute;
  top: 5px;
  left: 7px;
  display: flex;
  gap: 4px;
}

.brand-squares i,
.mini-squares i {
  display: block;
  width: 11px;
  height: 11px;
  background: #5d5961;
}

.brand-squares i:nth-child(2),
.mini-squares i:nth-child(2) {
  background: var(--magenta);
}

.brand-squares i:nth-child(3),
.mini-squares i:nth-child(3) {
  background: #8a858c;
}

.brand-dr {
  color: var(--magenta);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  transform: rotate(-14deg) translateY(4px);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 52px;
  background: var(--magenta);
  transform: rotate(20deg);
  left: 29px;
  top: 7px;
  border-radius: 20px;
  opacity: 0.92;
}

.brand-text {
  display: grid;
  line-height: 1;
  letter-spacing: 0.03em;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}

.brand-text em {
  font-style: normal;
  text-transform: uppercase;
  color: var(--magenta);
  letter-spacing: 0.24em;
  font-weight: 700;
  font-size: 12px;
  margin-top: 5px;
}

.primary-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  margin: 0;
}

.primary-menu a {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.93rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-menu a:hover,
.primary-menu a.active {
  background: var(--magenta-soft);
  color: var(--magenta-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(36, 36, 42, 0.16);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--cloud);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 14%, rgba(207, 20, 82, 0.15), transparent 31%),
    radial-gradient(circle at 15% 72%, rgba(36, 36, 42, 0.08), transparent 30%),
    linear-gradient(135deg, #fff 0%, #fff 47%, #fbf7fa 100%);
  z-index: 0;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(207, 20, 82, 0.17);
  border-radius: 999px;
}

.hero-bg::before {
  width: 640px;
  height: 640px;
  right: -180px;
  top: -130px;
}

.hero-bg::after {
  width: 420px;
  height: 420px;
  left: -150px;
  bottom: -160px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--magenta);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 0.78rem;
}

.eyebrow.light {
  color: #fff;
  opacity: 0.86;
}

.hero h1,
.section-heading h2,
.center-heading h2,
.appointment h2,
.location-info h2,
.hours-card h2,
.credential-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.45rem, 9vw, 7.75rem);
  font-weight: 500;
}

.hero h1::after {
  content: "";
  display: block;
  width: min(380px, 80%);
  height: 5px;
  background: linear-gradient(90deg, var(--ink), var(--magenta));
  margin-top: 22px;
  border-radius: 999px;
}

.hero-lead {
  max-width: 655px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  margin: 28px 0 0;
}

.hero-actions,
.appointment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  padding: 14px 22px;
  font-family: inherit;
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--magenta);
  color: #fff;
  box-shadow: 0 18px 32px rgba(207, 20, 82, 0.24);
}

.btn-primary:hover {
  background: var(--magenta-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-light {
  background: #fff;
  color: var(--magenta-dark);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.42);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ink-soft);
  box-shadow: 0 8px 18px rgba(36,36,42,0.05);
}

.trust-strip strong {
  color: var(--ink);
}

.hero-card {
  position: relative;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before {
  content: "ALEJANDRO";
  position: absolute;
  right: -34px;
  top: 72px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.4rem;
  letter-spacing: 0.02em;
  color: rgba(36, 36, 42, 0.045);
  z-index: -1;
}

.card-topline {
  position: absolute;
  top: 0;
  left: 34px;
  right: 34px;
  height: 9px;
  background: linear-gradient(90deg, var(--ink), var(--magenta), var(--silver));
  border-radius: 0 0 99px 99px;
}

.mini-logo {
  width: 86px;
  height: 86px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 34px rgba(207, 20, 82, 0.1);
}

.mini-logo span:last-child {
  color: var(--magenta);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 38px;
  transform: rotate(-14deg) translateY(5px);
}

.mini-logo::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 72px;
  background: var(--magenta);
  transform: rotate(20deg);
  left: 43px;
  top: 9px;
  border-radius: 20px;
}

.card-kicker {
  margin: 34px 0 8px;
  color: var(--magenta);
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.hero-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.phone-display {
  display: inline-flex;
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 3.05rem);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -0.04em;
}

.small-note {
  color: var(--ink-soft);
  margin: 18px 0 0;
}

.hero-card-footer {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--magenta-dark);
  font-weight: 800;
  word-break: break-word;
}

.quick-contact {
  background: var(--ink);
  color: #fff;
  padding: 22px 0;
}

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

.quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.045);
  transition: background 0.2s ease, transform 0.2s ease;
}

.quick-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.quick-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--magenta);
  flex: 0 0 auto;
  font-size: 1.2rem;
}

.quick-item strong,
.quick-item em {
  display: block;
}

.quick-item em {
  font-style: normal;
  opacity: 0.76;
  font-size: 0.95rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 126px;
}

.section-heading h2,
.center-heading h2,
.appointment h2,
.location-info h2,
.hours-card h2,
.credential-card h2 {
  margin: 0;
  font-weight: 500;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
}

.section-heading p,
.center-heading p,
.location-info p,
.hours-card p,
.credential-card p,
.appointment p {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.profile-panel {
  background: var(--cloud);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 22px;
}

.profile-line {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 28px 8px;
}

.profile-line:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.line-dot {
  width: 22px;
  height: 22px;
  margin-top: 6px;
  border-radius: 50%;
  border: 6px solid var(--magenta-soft);
  background: var(--magenta);
  box-shadow: 0 0 0 1px rgba(207, 20, 82, 0.2);
}

.profile-line h3 {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.22;
}

.profile-line p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.services {
  background: linear-gradient(180deg, #fff 0%, var(--cloud) 100%);
}

.center-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}

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

.service-card {
  min-height: 268px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 14px 35px rgba(36, 36, 42, 0.045);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(207, 20, 82, 0.26);
  box-shadow: var(--shadow-soft);
}

.service-number {
  color: var(--magenta);
  font-weight: 1000;
  letter-spacing: 0.18em;
}

.service-card h3 {
  margin: 36px 0 10px;
  font-size: 1.24rem;
  line-height: 1.17;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
}

.appointment {
  background: var(--paper);
}

.appointment-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  background:
    radial-gradient(circle at 86% 18%, rgba(255,255,255,0.22), transparent 28%),
    linear-gradient(135deg, var(--magenta-dark), var(--magenta) 57%, #f05b8c);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(30px, 6vw, 62px);
  box-shadow: 0 32px 70px rgba(207, 20, 82, 0.24);
  overflow: hidden;
  position: relative;
}

.appointment-card::after {
  content: "PREVIA CITA";
  position: absolute;
  right: -18px;
  bottom: -20px;
  font-weight: 1000;
  letter-spacing: -0.05em;
  font-size: clamp(3rem, 8vw, 7rem);
  opacity: 0.12;
}

.appointment h2,
.appointment p {
  color: #fff;
}

.appointment p {
  max-width: 610px;
  margin-bottom: 0;
  opacity: 0.88;
}

.schedule {
  padding-top: 0;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hours-card,
.credential-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.credential-card {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.card-label {
  display: inline-flex;
  background: var(--magenta-soft);
  color: var(--magenta-dark);
  padding: 8px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 1000;
  margin-bottom: 22px;
}

.credential-card .card-label {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.big-hour {
  font-size: clamp(1.6rem, 3vw, 2.6rem) !important;
  color: var(--magenta) !important;
  font-weight: 1000;
  margin: 22px 0 8px;
}

.credential-card p {
  color: rgba(255,255,255,0.72);
}

.location {
  background: var(--cloud);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 42px;
  align-items: center;
}

.map-card {
  min-height: 430px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-grid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(207,20,82,0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(36,36,42,0.08) 1px, transparent 1px),
    radial-gradient(circle at 45% 50%, rgba(207,20,82,0.2), transparent 28%),
    #fafafa;
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.map-grid-bg::before,
.map-grid-bg::after {
  content: "";
  position: absolute;
  height: 10px;
  background: rgba(207,20,82,0.45);
  border-radius: 99px;
  transform: rotate(-24deg);
}

.map-grid-bg::before {
  width: 72%;
  left: -6%;
  top: 36%;
}

.map-grid-bg::after {
  width: 86%;
  right: -8%;
  bottom: 30%;
  background: rgba(36,36,42,0.32);
  transform: rotate(18deg);
}

.pin-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 4px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 26px;
  min-width: 210px;
  box-shadow: var(--shadow);
}

.pin {
  color: var(--magenta);
  font-size: 2rem;
  line-height: 1;
}

.pin-card small {
  color: var(--muted);
}

.location-info address {
  font-style: normal;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  margin: 24px 0 24px;
  color: var(--ink-soft);
  font-size: 1.07rem;
}

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

.contact-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  min-height: 275px;
}

.contact-card span {
  display: inline-flex;
  color: var(--magenta);
  font-weight: 1000;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.contact-card h3 {
  margin: 20px 0 10px;
  font-size: 1.35rem;
  line-height: 1.18;
  word-break: break-word;
}

.contact-card p,
.contact-card li {
  color: var(--ink-soft);
}

.contact-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--magenta-dark);
  font-weight: 900;
}

.social-card ul {
  padding-left: 20px;
  margin: 14px 0 0;
}

.site-footer {
  background: #17171b;
  color: #fff;
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.footer-brand .brand-text strong {
  color: #fff;
}

.site-footer p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 0;
}

.site-footer a:hover {
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 54px;
  padding: 14px 18px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.34);
  font-weight: 1000;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 70;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid,
  .split-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 880px) {
  .nav-shell {
    min-height: 76px;
  }

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

  .header-cta {
    display: none;
  }

  .primary-menu {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: grid;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 14px;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .primary-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-menu a {
    width: 100%;
    justify-content: center;
    padding: 14px;
    border-radius: 16px;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .quick-grid,
  .schedule-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .appointment-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section-pad {
    padding: 64px 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text em {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .brand-dr {
    font-size: 23px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 14vw, 5.2rem);
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .hero-card::before {
    font-size: 4rem;
    top: 64px;
  }

  .phone-display {
    font-size: clamp(1.85rem, 10vw, 2.6rem);
  }

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

  .service-card {
    min-height: 220px;
  }

  .map-card {
    min-height: 320px;
  }

  .hero-actions,
  .appointment-actions {
    flex-direction: column;
  }

  .btn,
  .hero-actions .btn,
  .appointment-actions .btn {
    width: 100%;
  }

  .whatsapp-float {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .to-top {
    display: none;
  }
}
