@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,500&display=swap');

:root {
  /* ---- Cor ---- */
  --teal-900: #0c3e44;
  --teal-800: #0f545c;
  --teal-700: #14707a;
  --teal-600: #1a8994;
  --teal-500: #2ba3ad;
  --teal-100: #e2f0ef;
  --teal-50: #f2f8f7;
  --cream: #faf6ee;
  --sand: #f1ead9;
  --ink: #12292b;
  --white: #ffffff;

  --color-bg: var(--white);
  --color-bg-alt: var(--cream);
  --color-text: var(--ink);
  --color-text-soft: #4b6669;
  --color-brand: var(--teal-700);
  --color-brand-strong: var(--teal-900);
  --color-brand-soft: var(--teal-100);

  /* ---- Tipografia ---- */
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;

  /* ---- Forma ---- */
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* ---- Sombra (tingida de teal, nunca preto puro) ---- */
  --shadow-sm: 0 4px 16px -6px rgba(12, 62, 68, 0.18);
  --shadow-md: 0 20px 48px -16px rgba(12, 62, 68, 0.24);
  --shadow-lg: 0 16px 32px -14px rgba(12, 62, 68, 0.28);

  --container: 1180px;
  --edge: clamp(1.5rem, 5vw, 4rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--color-brand-strong);
}

p {
  margin: 0;
}

a {
  color: inherit;
}

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

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--edge);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9em 1.7em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn-primary,
.btn-primary:visited {
  background: var(--color-brand);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--teal-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost,
.btn-ghost:visited {
  background: transparent;
  color: var(--color-brand-strong);
  border-color: var(--teal-900);
}

.btn-ghost:hover {
  background: var(--color-brand-strong);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-on-dark,
.btn-on-dark:visited {
  background: var(--white);
  color: var(--color-brand-strong);
}

.btn-on-dark:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* Reveal-on-scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-group] > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

/* ==================== HEADER ==================== */

.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding-block: 1.4rem;
  transition: padding 0.35s ease;
}

.header.is-scrolled {
  padding-block: 0.9rem;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 1rem 0.7rem 1.3rem;
  border-radius: var(--radius-pill);
}

/* Efeito de vidro isolado num pseudo-elemento — se ficasse direto no
   .header-inner, o backdrop-filter faz esse elemento virar "container"
   pra descendentes com position:fixed (o menu mobile), prendendo o
   menu dentro da pílula em vez de cobrir a tela inteira. */
.header-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s ease, background 0.35s ease;
}

.header.is-scrolled .header-inner::before {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}

.brand img {
  height: 42px;
  width: auto;
  transition: height 0.35s ease;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-brand-strong);
  white-space: nowrap;
}

@media (max-width: 520px) {
  .brand-name {
    display: none;
  }
}

.is-scrolled .brand img {
  height: 34px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-brand-strong);
  position: relative;
}

.nav ul a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-brand);
  transition: width 0.3s ease;
}

.nav ul a:hover::after {
  width: 100%;
}

.nav-cta,
.nav a.nav-cta,
.nav a.nav-cta:visited {
  padding: 0.7em 1.5em;
  font-size: 0.9rem;
  color: var(--white);
  position: relative;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(20, 112, 122, 0.55);
  animation: nav-cta-pulse 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes nav-cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 112, 122, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(20, 112, 122, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 112, 122, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-cta::before {
    animation: none;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--color-brand-strong);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    background: var(--color-bg);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .nav ul a {
    font-size: 1.4rem;
  }

  .nav-toggle[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .nav-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded='true'] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
}

/* ==================== HERO ==================== */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--teal-50), var(--teal-100));
}

.hero::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(20, 112, 122, 0.06);
  left: -160px;
  top: -140px;
  pointer-events: none;
}

.hero-top {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(620px, 56vw, 780px);
  padding-top: clamp(6.5rem, 9vw, 8rem);
  padding-bottom: 2.5rem;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-copy {
  max-width: clamp(380px, 46vw, 560px);
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  margin-top: 0.6rem;
  text-wrap: balance;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--color-brand);
  position: relative;
}

.hero-lead {
  margin-top: 1.6rem;
  max-width: 46ch;
  font-size: 1.15rem;
  color: var(--color-text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.btn-moving-border {
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, background 0.25s ease;
}

.btn-moving-border:hover {
  transform: translateY(-2px) scale(1.03);
}

.btn-moving-border-track {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.btn-moving-border-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.btn-moving-border-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(43, 163, 173, 0.4) 45%, transparent 70%);
  filter: blur(4px);
  will-change: transform;
}

.btn-moving-border-label {
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(46%, 50vw, 54%);
  z-index: 0;
}

.hero-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%);
  mask-image: linear-gradient(to right, transparent 0%, black 22%);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-placeholder {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(155deg, var(--teal-700), var(--teal-900));
  color: var(--white);
  font-family: var(--font-display);
}

.hero-placeholder span {
  font-size: 1.3rem;
  font-weight: 600;
}

.hero-placeholder small {
  font-family: var(--font-body);
  opacity: 0.75;
  font-size: 0.85rem;
}

.hero-stat-card {
  position: absolute;
  bottom: 2rem;
  right: 1.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-md);
}

.hero-stat-google {
  flex-shrink: 0;
  display: flex;
}

.hero-stat-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stat-top {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-brand-strong);
  line-height: 1;
}

.hero-stat-stars {
  color: #f5b400;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.hero-stat-label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--color-text-soft);
}

@media (max-width: 640px) {
  .hero-stat-card {
    bottom: 1rem;
    right: 1rem;
    padding: 0.7rem 1rem;
  }

  .hero-stat-value {
    font-size: 1.15rem;
  }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 100%;
  padding: 0.5rem 1.1rem 0.5rem 0.5rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--teal-100);
}

.hero-badge span:last-child {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-brand-strong);
  line-height: 1.3;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .hero-badge span:last-child {
    white-space: normal;
  }
}

.hero-badge-icon {
  position: relative;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal-100);
}

.hero-badge-icon::before {
  content: '';
  position: absolute;
  inset: 7px;
  background: var(--color-brand);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.hero-badge-icon[data-icon='search']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E");
}

.hero-badge-icon[data-icon='heart']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.53L12 21.35z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.53L12 21.35z'/%3E%3C/svg%3E");
}

.hero-badge-icon[data-icon='phone']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.362 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.338 1.85.573 2.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72c.127.96.362 1.903.7 2.81a2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45c.907.338 1.85.573 2.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
}

.hero-badge-phone {
  display: none;
  text-decoration: none;
  cursor: pointer;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  animation: hero-scroll-bounce 2.2s ease-in-out infinite;
}

.hero-scroll-cue-icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.hero-scroll-cue-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-brand);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 9l7 7 7-7'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 9l7 7 7-7'/%3E%3C/svg%3E");
}

@keyframes hero-scroll-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@media (max-width: 900px) {
  .hero-scroll-cue {
    display: none;
  }

  .hero-top {
    display: block;
    min-height: auto;
    padding-top: clamp(7.5rem, 20vw, 8.5rem);
    padding-bottom: clamp(2.5rem, 8vw, 3rem);
  }

  .hero-badge-phone {
    display: flex;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    position: relative;
    width: auto;
    margin: 0 calc(var(--edge) * -1) 2rem;
  }

  .hero-frame {
    aspect-ratio: 16 / 10;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn-ghost {
    display: none;
  }
}

/* ==================== FUNDADOR ==================== */

.founder {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background: var(--color-bg-alt);
}

.founder .about-inner {
  grid-template-columns: 1fr 1fr;
}

.founder .about-frame {
  aspect-ratio: 3 / 4;
  max-width: 480px;
  border-radius: var(--radius-md);
}

@media (max-width: 900px) {
  .founder .about-inner {
    grid-template-columns: 1fr;
  }

  .founder .about-frame {
    max-width: 320px;
  }
}

/* ==================== SERVICES ==================== */

.services {
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.services-head {
  max-width: 62ch;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.services-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 0.6rem;
  text-wrap: balance;
}

.services-lead {
  margin-top: 1rem;
  color: var(--color-text-soft);
  font-size: 1.1rem;
}

.services-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 1.5rem;
  margin-top: 2.5rem;
}

.specialty-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.specialty-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--teal-100);
}

.specialty-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.specialty-card:hover .specialty-photo img {
  transform: scale(1.05);
}

.specialty-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--teal-100), var(--teal-50));
}

.specialty-photo--placeholder .service-icon {
  width: 72px;
  height: 72px;
  margin: 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.specialty-photo--placeholder .service-icon::before {
  inset: 20px;
}

.specialty-body {
  padding: 1.6rem 1.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.specialty-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.specialty-card p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.92rem;
}

.specialty-cta {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55em 1.5em;
  border-radius: var(--radius-pill);
  background: var(--color-brand);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.specialty-cta:hover {
  background: var(--teal-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .specialty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .specialty-grid {
    grid-template-columns: 1fr;
  }
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--color-brand);
  margin-bottom: 1.4rem;
  position: relative;
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: 14px;
  background: var(--white);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.service-icon[data-icon='sparkle']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l1.8 6.2L20 10l-6.2 1.8L12 18l-1.8-6.2L4 10l6.2-1.8L12 2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l1.8 6.2L20 10l-6.2 1.8L12 18l-1.8-6.2L4 10l6.2-1.8L12 2z'/%3E%3C/svg%3E");
}

.service-icon[data-icon='layers']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l9 5-9 5-9-5 9-5zm-9 9l9 5 9-5M3 16l9 5 9-5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l9 5-9 5-9-5 9-5zm-9 9l9 5 9-5M3 16l9 5 9-5'/%3E%3C/svg%3E");
}

.service-icon[data-icon='implant']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c-3 0-4 2-4 4 0 3 1 4 1 6l-1 10h2l1-6h2l1 6h2l-1-10c0-2 1-3 1-6 0-2-1-4-4-4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c-3 0-4 2-4 4 0 3 1 4 1 6l-1 10h2l1-6h2l1 6h2l-1-10c0-2 1-3 1-6 0-2-1-4-4-4z'/%3E%3C/svg%3E");
}

.service-icon[data-icon='face']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3C/svg%3E");
}

.service-icon[data-icon='align']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='4' width='4' height='16' rx='1'/%3E%3Crect x='10' y='7' width='4' height='13' rx='1'/%3E%3Crect x='16' y='2' width='4' height='18' rx='1'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='4' y='4' width='4' height='16' rx='1'/%3E%3Crect x='10' y='7' width='4' height='13' rx='1'/%3E%3Crect x='16' y='2' width='4' height='18' rx='1'/%3E%3C/svg%3E");
}

.service-icon[data-icon='scan']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M4 8V5a1 1 0 011-1h3M20 8V5a1 1 0 00-1-1h-3M4 16v3a1 1 0 001 1h3M20 16v3a1 1 0 01-1 1h-3M4 12h16'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M4 8V5a1 1 0 011-1h3M20 8V5a1 1 0 00-1-1h-3M4 16v3a1 1 0 001 1h3M20 16v3a1 1 0 01-1 1h-3M4 12h16'/%3E%3C/svg%3E");
}

.service-icon[data-icon='exam']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E");
}

.service-icon[data-icon='clean']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3s6 6.5 6 11a6 6 0 01-12 0c0-4.5 6-11 6-11z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3s6 6.5 6 11a6 6 0 01-12 0c0-4.5 6-11 6-11z'/%3E%3C/svg%3E");
}

.service-icon[data-icon='restore']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 5-3.5 8.5-7 10-3.5-1.5-7-5-7-10V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 5-3.5 8.5-7 10-3.5-1.5-7-5-7-10V6l7-3z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

.service-icon[data-icon='whiten']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v3M12 19v3M4.2 4.2l2.1 2.1M17.7 17.7l2.1 2.1M2 12h3M19 12h3M4.2 19.8l2.1-2.1M17.7 6.3l2.1-2.1'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v3M12 19v3M4.2 4.2l2.1 2.1M17.7 17.7l2.1 2.1M2 12h3M19 12h3M4.2 19.8l2.1-2.1M17.7 6.3l2.1-2.1'/%3E%3C/svg%3E");
}

.service-icon[data-icon='esthetic']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.53L12 21.35z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.53L12 21.35z'/%3E%3C/svg%3E");
}

.service-icon[data-icon='rehab']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3,12 8,12 10,6 14,18 16,12 21,12'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3,12 8,12 10,6 14,18 16,12 21,12'/%3E%3C/svg%3E");
}

.service-icon[data-icon='prosthesis']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 8v8M8 12h8'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 8v8M8 12h8'/%3E%3C/svg%3E");
}

.service-icon[data-icon='followup']::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='15' rx='2'/%3E%3Cpath d='M4 10h16M8 3v4M16 3v4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='15' rx='2'/%3E%3Cpath d='M4 10h16M8 3v4M16 3v4'/%3E%3C/svg%3E");
}


/* ==================== TREATMENTS ==================== */

.treatments {
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.treatments-head {
  max-width: 62ch;
}

.treatments-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 0.6rem;
  text-wrap: balance;
}

.treatments-lead {
  margin-top: 1rem;
  color: var(--color-text-soft);
  font-size: 1.1rem;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.treatment-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), var(--teal-50));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.8rem 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.treatment-card .service-icon {
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--teal-100);
}

.treatment-card .service-icon::before {
  background: var(--color-brand);
}

.treatment-card h3 {
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.treatment-card p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .treatments-grid {
    grid-template-columns: 1fr;
  }
}


/* ==================== ABOUT ==================== */

.about {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background: var(--color-bg-alt);
}

.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-frame {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin-inline: auto;
  border-radius: var(--radius-md);
}

.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.sobre-frame-wrap {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
}

.about-badge {
  position: absolute;
  left: 50%;
  bottom: -1rem;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 88%;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-brand-strong);
  text-align: left;
  line-height: 1.3;
}

.about-badge-icon {
  flex-shrink: 0;
  display: flex;
  margin-top: 0.15rem;
  color: var(--color-brand);
}

.about-badge-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 900px) {
  .sobre-frame-wrap {
    max-width: 320px;
  }

  .about-badge {
    max-width: 95%;
    padding: 0.55rem 0.85rem;
    font-size: 0.74rem;
  }

  .about-badge-text {
    -webkit-line-clamp: 3;
  }
}

.about-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 2rem;
  background: var(--teal-100);
  color: var(--color-brand-strong);
  font-family: var(--font-display);
}

.about-placeholder span {
  font-size: 1.2rem;
  font-weight: 600;
}

.about-placeholder small {
  font-family: var(--font-body);
  opacity: 0.7;
  font-size: 0.85rem;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-top: 0.6rem;
  max-width: 20ch;
}

.about-lead {
  margin-top: 1.4rem;
  color: var(--color-text-soft);
  font-size: 1.08rem;
  max-width: 56ch;
}

.diferenciais {
  list-style: none;
  margin: 2.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.diferenciais li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.3rem;
  box-shadow: var(--shadow-sm);
}

.diferencial-icon {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--teal-100);
}

.diferencial-icon::before {
  content: '';
  position: absolute;
  inset: 9px;
  background: var(--color-brand);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.diferenciais strong {
  font-family: var(--font-display);
  color: var(--color-brand-strong);
  font-size: 1.05rem;
}

.diferenciais p {
  margin-top: 0.2rem;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}

.about-cta {
  margin-top: 2.2rem;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-frame {
    max-width: 320px;
    margin-bottom: 1rem;
  }

  .about-cta {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }
}

/* ==================== TESTIMONIALS ==================== */

.testimonials {
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.testimonials-head {
  max-width: 60ch;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.testimonials-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  margin-top: 0.6rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.testimonial-card {
  position: relative;
  margin: 34px 0 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.4rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-avatar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--teal-100);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #f5b400;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  margin-top: auto;
  padding-top: 0.3rem;
}

.testimonial-card blockquote {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-soft);
  line-height: 1.55;
}

.testimonial-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-card figcaption strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-brand-strong);
}

.testimonial-card figcaption span {
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== CTA BANNER ==================== */

.cta {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  padding-block: clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  right: -140px;
  bottom: -180px;
}

.cta-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.6vw, 3rem);
  max-width: 18ch;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 46ch;
}

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

/* ==================== FOOTER ==================== */

.footer {
  background: var(--color-brand-strong);
  color: rgba(255, 255, 255, 0.85);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  text-decoration: none;
}

.footer-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}

.footer-logo-badge img {
  width: 28px;
  height: 28px;
}

.footer-logo .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 32ch;
  color: rgba(255, 255, 255, 0.7);
}

.socials {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.socials a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}

.footer-col h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

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

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

.contact-list li {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

.map-placeholder {
  display: block;
  padding: 1.4rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  text-decoration: none;
}

.map-placeholder small {
  display: block;
  margin-top: 0.4rem;
  opacity: 0.6;
  font-size: 0.75rem;
}

.footer-map {
  margin-bottom: 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.footer-map iframe {
  display: block;
}

.footer-bottom {
  padding-block: 1.6rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
