/* ===========================
   RESET & BASE
   =========================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #0D9488;
  --color-secondary: #0E7490;
  --color-tertiary: #22C55E;
  --color-neutral: #0F172A;
  --color-white: #FFFFFF;
  --color-gray-50: #F8FAFC;
  --color-gray-100: #F1F5F9;
  --color-gray-200: #E2E8F0;
  --color-gray-300: #CBD5E1;
  --color-gray-400: #94A3B8;
  --color-gray-500: #64748B;
  --color-gray-600: #475569;
  --color-gray-700: #334155;

  --font-family: 'Inter', sans-serif;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

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

body {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-neutral);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ===========================
   UTILITIES
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background-color: var(--color-gray-50);
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-neutral);
  margin-bottom: 12px;
}

.section__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: #0b7f74;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

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

.btn--whatsapp {
  background-color: #25D366;
  color: var(--color-white);
}

.btn--whatsapp:hover {
  background-color: #1fb855;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn--lg {
  font-size: 16px;
  padding: 16px 32px;
}

.btn--full {
  width: 100%;
}

/* ===========================
   HEADER — Transparente -> Branco no scroll
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
}

.header--scrolled {
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.header--scrolled .header__logo {
  color: var(--color-neutral);
}

.header--scrolled .header__menu a {
  color: var(--color-gray-600);
}

.header--scrolled .header__menu a:hover {
  color: var(--color-primary);
}

.header--scrolled .header__toggle span {
  background-color: var(--color-neutral);
}

.header--scrolled .btn--outline {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.header--scrolled .btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__menu {
  display: flex;
  gap: 28px;
}

.header__menu a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.header__menu a:hover {
  color: var(--color-white);
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s;
}

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

.header__toggle--active span:nth-child(2) {
  opacity: 0;
}

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

/* ===========================
   HERO — Overlay 80%
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.80);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__content {
  max-width: 640px;
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Indicador de scroll */
.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  animation: bounceDown 2s ease infinite;
}

.hero__scroll-indicator span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hero__scroll-indicator i {
  font-size: 20px;
}

@keyframes bounceDown {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ===========================
   STATS — Cards brancos com borda animada
   =========================== */
.stats {
  background-color: var(--color-gray-50);
  padding: 64px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats__card {
  background-color: var(--color-white);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.stats__card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.stats__icon {
  font-size: 32px;
  color: var(--color-primary);
  line-height: 1;
}

.stats__number {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-neutral);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.stats__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===========================
   SERVICES — Cards com imagem de fundo
   =========================== */
.services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.service-card {
  position: relative;
  /* flex-basis para 3 por linha; a última linha (cards ímpares)
     fica centralizada por causa do justify-content: center. */
  flex: 0 1 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.03);
  border: 1px solid #eaeaea;
  cursor: pointer;
}

.service-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-xl);
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__bg {
  transform: scale(1.05);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 22%,
    rgba(0, 0, 0, 0.8) 62%
  );
  border-radius: var(--radius-xl);
  z-index: 1;
}

.service-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card__icon {
  font-size: 36px;
  color: var(--color-white);
  line-height: 1;
}

.service-card__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-white);
}

.service-card__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #eef3f6;
}

/* ===========================
   SPECIALISTS — Card estilo Figma
   =========================== */
.specialists__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.specialist-card {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #bcc9c6;
  transition: box-shadow 0.3s;
}

.specialist-card:hover {
  box-shadow: var(--shadow-lg);
}

.specialist-card__photo {
  width: 100%;
  height: 384px;
  overflow: hidden;
}

.specialist-card__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c8d6d3, #a3b5b1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.specialist-card__photo-placeholder i {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.5);
}

.specialist-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialist-card__info {
  padding: 20px;
  border-top: 1px solid rgba(188, 201, 198, 0.3);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.specialist-card__name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #131b2e;
}

.specialist-card__specialty {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}

.specialist-card__cro {
  font-size: 14px;
  font-weight: 400;
  color: #3d4947;
  padding-top: 4px;
}

/* ===========================
   ABOUT
   =========================== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.about__photo {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 500;
  font-size: 14px;
}

.about__photo--large {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.about__photo--small {
  aspect-ratio: 4 / 3;
}

.about__content .section__title {
  text-align: left;
  margin-bottom: 16px;
}

.about__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-600);
  margin-bottom: 24px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about__features li {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-700);
  padding-left: 24px;
  position: relative;
}

.about__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-tertiary);
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__stars {
  color: #F59E0B;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-gray-600);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-neutral);
}

.testimonial-card__source {
  font-size: 12px;
  color: var(--color-gray-400);
}

/* ===========================
   CTA BOOKING — Agendamento
   =========================== */
.cta-booking {
  background-color: var(--color-neutral);
  overflow: hidden;
}

.cta-booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-booking__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-booking__text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 460px;
}

.cta-booking__image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--color-white);
}

.cta-booking__image-placeholder i {
  font-size: 60px;
  opacity: 0.6;
}

.cta-booking__image-placeholder span {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.7;
}

/* ===========================
   LOCATION — Localização separada
   =========================== */
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location__card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: box-shadow 0.3s;
}

.location__card:hover {
  box-shadow: var(--shadow-md);
}

/* Reserva espaço à direita para o botão de copiar */
.location__card--address {
  padding-right: 56px;
}

/* Botão de copiar endereço */
.location__copy {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(13, 148, 136, 0.08);
  color: var(--color-primary);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.location__copy i {
  font-size: 18px;
  line-height: 1;
}

.location__copy:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

.location__copy--copied {
  background-color: var(--color-tertiary);
  color: var(--color-white);
  border-color: var(--color-tertiary);
}

.location__card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background-color: rgba(13, 148, 136, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location__card-icon i {
  font-size: 22px;
  color: var(--color-primary);
}

.location__card-content strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-neutral);
  display: block;
  margin-bottom: 4px;
}

.location__card-content p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-gray-500);
}

.location__map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background-color: var(--color-gray-200);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-500);
  gap: 8px;
}

.location__map-placeholder i {
  font-size: 40px;
}

.location__map-placeholder span {
  font-weight: 600;
}

.location__map-placeholder small {
  font-size: 13px;
}

/* ===========================
   FOOTER — Estilo Figma
   =========================== */
.footer {
  background-color: var(--color-neutral);
  color: var(--color-gray-300);
  padding: 56px 0 0;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-gray-700);
}

.footer__brand {
  max-width: 340px;
}

.footer__logo {
  font-size: 30px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.13;
}

.footer__tagline {
  font-size: 16px;
  line-height: 1.625;
  color: #f1f5f7;
  opacity: 0.84;
}

.footer__columns {
  display: flex;
  gap: 40px;
  text-align: right;
}

.footer__column {
  width: 220px;
}

.footer__column-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 1.44px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.footer__column p {
  font-size: 15px;
  line-height: 1.6;
  color: #f1f5f7;
  opacity: 0.84;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 13px;
  color: #f1f5f7;
  opacity: 0.76;
}

.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__social-link {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer__social-link:hover {
  color: var(--color-white);
}

/* ===========================
   WHATSAPP FLOAT
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  font-size: 30px;
  color: var(--color-white);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ===========================
   RESPONSIVE — TABLET (768px)
   =========================== */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section__title {
    font-size: 24px;
  }

  .section__subtitle {
    font-size: 16px;
  }

  /* HEADER */
  .header:not(.header--scrolled) {
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
  }

  .header__toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .header:not(.header--scrolled) .header__nav {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
  }

  .header.header--scrolled .header__nav {
    background-color: var(--color-white);
  }

  .header__nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header__menu {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .header__menu a {
    font-size: 16px;
  }

  .header__cta {
    width: 100%;
    text-align: center;
  }

  /* HERO */
  .hero {
    min-height: 85vh;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__scroll-indicator {
    bottom: 20px;
  }

  /* STATS */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stats__number {
    font-size: 32px;
  }

  .stats__card {
    padding: 24px 16px;
  }

  /* SERVICES */
  .service-card {
    flex-basis: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
    height: 360px;
  }

  /* SPECIALISTS */
  .specialists__grid {
    grid-template-columns: 1fr 1fr;
  }

  .specialist-card__photo {
    height: 300px;
  }

  /* ABOUT */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__content .section__title {
    text-align: center;
  }

  .about__text {
    text-align: center;
  }

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

  /* TESTIMONIALS */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* CTA BOOKING */
  .cta-booking__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-booking__title {
    font-size: 28px;
  }

  .cta-booking__content {
    text-align: center;
  }

  .cta-booking__text {
    max-width: 100%;
  }

  /* LOCATION */
  .location__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .location__map-placeholder {
    min-height: 280px;
  }

  /* FOOTER */
  .footer__top {
    flex-direction: column;
    gap: 32px;
  }

  .footer__brand {
    max-width: 100%;
    text-align: center;
  }

  .footer__columns {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    width: 100%;
  }

  .footer__column {
    width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__social {
    justify-content: center;
  }
}

/* ===========================
   RESPONSIVE — MOBILE (480px)
   =========================== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .hero__title {
    font-size: 28px;
  }

  .service-card {
    flex-basis: 100%;
    max-width: 100%;
    height: 380px;
  }

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

  .specialist-card__photo {
    height: 340px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stats__number {
    font-size: 28px;
  }

  .stats__icon {
    font-size: 26px;
  }

  .btn--lg {
    font-size: 14px;
    padding: 14px 24px;
    width: 100%;
  }

  .cta-booking__title {
    font-size: 24px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}
