:root {
  --bg: #f3f1f7;
  --surface: #ffffff;
  --surface-alt: #e9ecf1;
  --text: #1c1c24;
  --muted: #4b4b55;
  --primary: rgb(254, 179, 200);
  --primary-dark: #f58eb1;
  --secondary: #baf2d7;
  --accent-yellow: hsl(60, 93%, 66%);
  --brand-blue: rgb(16, 138, 177);
  --brand-blue-deep: rgb(10, 118, 152);
  /* Header/rodapé: tom #B3EBF2 + degradê ciano pastel; texto escuro ardósia */
  --header-footer-surface-deep: #7dcee0;
  --header-footer-surface-mid: #98e4ed;
  --header-footer-surface-light: #b3ebf2;
  --header-footer-ink: hsl(198, 42%, 18%);
  --header-footer-ink-soft: hsl(198, 18%, 34%);
  --mint: #baf2d7;
  --border: #e2d4e8;
  --card-border-blue: rgba(16, 138, 177, 0.35);
  --card-border-pink: rgba(245, 142, 177, 0.45);
  --success-bg: #e8f8ef;
  --success-text: #116530;
  --error-bg: #fdecec;
  --error-text: #9f1239;
  --radius: 18px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-card:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 4px 12px rgba(15, 23, 42, 0.06),
    0 18px 40px -12px rgba(15, 23, 42, 0.14);
  --shadow-header: 0 20px 50px -22px hsla(188, 32%, 28%, 0.14);
  --transition-smooth: 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 10000;
  padding: 12px 18px;
  border-radius: 12px;
  background: #fff;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid rgba(16, 138, 177, 0.35);
  outline-offset: 2px;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(ellipse 1200px 700px at 92% 2%, rgba(16, 138, 177, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse 900px 600px at -5% 30%, rgba(245, 142, 177, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 800px 500px at 50% 100%, hsla(60, 93%, 66%, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 700px 400px at 15% 85%, rgba(186, 242, 215, 0.16) 0%, transparent 55%),
    linear-gradient(160deg, #f9f7ff 0%, #fdf5fa 42%, #f4fbf8 100%);
  color: var(--text);
  line-height: 1.65;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: relative;
  background: linear-gradient(
    168deg,
    var(--header-footer-surface-deep) 0%,
    var(--header-footer-surface-mid) 48%,
    var(--header-footer-surface-light) 100%
  );
  color: var(--header-footer-ink);
  padding: 24px 0 52px;
  overflow: hidden;
  box-shadow: var(--shadow-header);
}

.site-header__texture {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.site-header__butterflies {
  display: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.butterfly {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  opacity: 0.35;
}

.butterfly--1 {
  top: 18%;
  left: 8%;
  background: #fff;
}

.butterfly--2 {
  top: 42%;
  right: 12%;
  background: rgba(255, 255, 255, 0.85);
}

.butterfly--3 {
  bottom: 28%;
  left: 18%;
  background: var(--primary);
}

.butterfly--4 {
  top: 30%;
  right: 28%;
  background: var(--accent-yellow);
}

.site-header__inner {
  position: relative;
  z-index: 1;
}

.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.site-header__toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 8px 24px hsla(188, 35%, 28%, 0.08);
  color: var(--header-footer-ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.site-header__toggle:hover,
.site-header__toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
}

.site-header__toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 16px;
}

.site-header__toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--header-footer-ink);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
}

/* Hambúrguer vira "X" quando o menu está aberto */
.site-header.menu-open .site-header__toggle {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px hsla(188, 35%, 28%, 0.16);
}

.site-header.menu-open .site-header__toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .site-header__toggle-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.site-header.menu-open .site-header__toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__toggle-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    #f58eb1,
    hsl(60, 88%, 72%),
    #7dcee0,
    #8fe8b6,
    #f58eb1
  );
  box-shadow: 0 4px 14px hsla(188, 35%, 28%, 0.16);
  transition: transform var(--transition-smooth);
}

.site-header__brand:hover .site-logo {
  transform: rotate(-5deg) scale(1.05);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 26px 8px 10px;
  border-radius: 999px;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.46) 100%
  );
  border: 1px solid hsla(0, 0%, 100%, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 28px -10px hsla(188, 35%, 28%, 0.22);
  backdrop-filter: blur(10px);
}

.site-header__brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.site-header__name {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.site-header__name-main {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #f7a3c2;
}

.site-header__name-main-is {
  color: #3d9fc0;
}

.site-header__name-subtitle {
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1c1c24;
}

.site-logo img {
  width: clamp(50px, 6.5vw, 60px);
  height: clamp(50px, 6.5vw, 60px);
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid #fff;
}

.btn-header-cta {
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(145deg, #ff9ec4, var(--primary-dark));
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 8px 22px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast);
}

.btn-header-cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 12px 28px rgba(0, 0, 0, 0.22);
}

.btn-header-cta:focus-visible {
  outline: 3px solid hsla(198, 38%, 22%, 0.45);
  outline-offset: 2px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 26px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid hsla(188, 28%, 32%, 0.16);
}

.site-nav a {
  position: relative;
  color: var(--header-footer-ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 2px 8px;
  transition: color var(--transition-fast);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    hsla(330, 75%, 72%, 0.35),
    var(--header-footer-ink),
    hsla(330, 75%, 72%, 0.35)
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-smooth);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--header-footer-ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header__title {
  position: relative;
  margin: 30px auto 0;
  max-width: 900px;
  padding: 0 6px 2px;
  text-wrap: balance;
}

.site-header__title-panel {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    155deg,
    hsla(0, 0%, 100%, 0.5) 0%,
    hsla(179, 235, 242, 0.35) 40%,
    hsla(186, 242, 215, 0.28) 70%,
    hsla(254, 179, 200, 0.22) 100%
  );
  border: 1.5px solid hsla(0, 0%, 100%, 0.65);
  box-shadow:
    0 1px 0 hsla(0, 0%, 100%, 0.75) inset,
    0 14px 36px hsla(188, 35%, 28%, 0.08);
  pointer-events: none;
}

.site-header__title-grid {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0;
  padding: clamp(22px, 3.2vw, 30px) clamp(16px, 3vw, 28px);
  text-align: center;
}

.site-header__title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35em 0.5em;
  width: 100%;
}

.site-header__title-row--headline {
  max-width: 22ch;
}

.site-header__title-headline {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 3.8vw, 2.5rem);
  font-weight: 600;
  font-variation-settings: "SOFT" 40, "WONK" 0.5;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--header-footer-ink);
  text-shadow: 0 1px 0 hsla(0, 0%, 100%, 0.5);
}

.site-header__title-place {
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "SOFT" 50, "WONK" 0.7;
  color: var(--brand-blue-deep);
  text-decoration: none;
  padding-bottom: 0.16em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M3 8.5 C 28 3.5, 68 2.5, 117 6.5' fill='none' stroke='%230a7698' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 0.3em;
  background-position: center 100%;
}

.site-header__title-stripe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: clamp(12px, 2vw, 18px) 0;
  padding: 0 8px;
}

.site-header__title-stripe::before,
.site-header__title-stripe::after {
  content: "";
  flex: 1;
  max-width: 88px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    hsla(198, 38%, 22%, 0.22)
  );
}

.site-header__title-stripe::after {
  background: linear-gradient(
    90deg,
    hsla(198, 38%, 22%, 0.22),
    transparent
  );
}

.site-header__title-stripe i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.site-header__title-stripe i:nth-child(1) { background: var(--primary-dark); }
.site-header__title-stripe i:nth-child(2) { background: var(--accent-yellow); }
.site-header__title-stripe i:nth-child(3) {
  background: rgb(100, 178, 208);
}
.site-header__title-stripe i:nth-child(4) { background: var(--brand-blue); }

.site-header__title-row--focus {
  flex-direction: column;
  gap: 0.3em;
  max-width: 26em;
}

.site-header__title-kicker {
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--header-footer-ink-soft);
}

.site-header__title-emphasis {
  display: inline-block;
  width: fit-content;
  align-self: center;
  margin: 0;
  padding: 0.32em 1.1em 0.42em;
  border-radius: 999px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  font-style: italic;
  font-weight: 600;
  font-variation-settings: "SOFT" 50, "WONK" 0.7;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: hsl(198, 38%, 20%);
  background: linear-gradient(
    90deg,
    hsla(254, 179, 200, 0.35) 0%,
    hsla(186, 242, 215, 0.4) 50%,
    hsla(179, 235, 242, 0.35) 100%
  );
  border: 1px solid hsla(0, 0%, 100%, 0.55);
  box-shadow: 0 1px 0 hsla(0, 0%, 100%, 0.6) inset;
}

.site-header__title-row--close {
  margin-top: 0.45em;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.28rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--header-footer-ink);
}

.site-header__title-grid > * {
  animation: site-header-title-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-header__title-row--headline { animation-delay: 0.05s; }
.site-header__title-stripe { animation-delay: 0.12s; }
.site-header__title-row--focus { animation-delay: 0.19s; }
.site-header__title-row--close { animation-delay: 0.26s; }

@keyframes site-header-title-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .site-header__title {
    margin-top: 22px;
  }

  .site-header__title-panel {
    border-radius: 16px;
  }

  .site-header__title-row--headline {
    max-width: none;
  }

  .site-header__title-headline {
    font-size: clamp(1.38rem, 5.2vw, 1.75rem);
  }

  .site-header__title-emphasis {
    font-size: clamp(1.12rem, 4.6vw, 1.38rem);
    padding-inline: 0.55em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__title-grid > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.site-footer {
  margin-top: 0;
  position: relative;
  background: linear-gradient(
    175deg,
    var(--header-footer-surface-deep) 0%,
    var(--header-footer-surface-mid) 50%,
    var(--header-footer-surface-light) 100%
  );
  color: var(--header-footer-ink-soft);
  padding: clamp(48px, 8vw, 64px) 0 0;
  overflow: hidden;
  box-shadow: 0 -24px 48px -28px hsla(188, 32%, 28%, 0.12);
}

.site-footer__texture {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='nf'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23nf)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.05fr) minmax(200px, 0.95fr) minmax(260px, 1.1fr);
  gap: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 32px);
  align-items: start;
  padding-bottom: clamp(32px, 5vw, 44px);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 300px;
}

.site-footer__logo-link {
  display: inline-flex;
  line-height: 0;
  margin-bottom: 12px;
  padding: 3px;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    #f58eb1,
    hsl(60, 88%, 72%),
    #7dcee0,
    #8fe8b6,
    #f58eb1
  );
  box-shadow: 0 6px 16px hsla(188, 35%, 28%, 0.16);
  transition: transform var(--transition-smooth);
}

.site-footer__logo-link:hover {
  transform: rotate(-5deg) scale(1.05);
}

.site-footer__logo {
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.site-footer__name {
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.site-footer__name-main {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #f7a3c2;
}

.site-footer__name-main-is {
  color: #2b9fc4;
}

.site-footer__name-subtitle {
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1c1c24;
}

.site-footer__tagline {
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--header-footer-ink-soft);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 28px);
}

.site-footer__col {
  min-width: 0;
}

.site-footer__heading {
  margin: 0 0 12px;
  padding-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--header-footer-ink);
  border-bottom: 2px solid hsla(198, 38%, 22%, 0.12);
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list li {
  margin-bottom: 8px;
}

.site-footer__list a {
  display: inline-block;
  color: var(--header-footer-ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color var(--transition-fast);
}

.site-footer__list a:hover {
  color: var(--brand-blue-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__contact {
  min-width: 0;
}

.site-footer__contact-cards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__card {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px 12px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 14px;
  background: hsla(0, 0%, 100%, 0.42);
  border: 1px solid hsla(0, 0%, 100%, 0.55);
  box-shadow: 0 1px 0 hsla(0, 0%, 100%, 0.65) inset;
}

.site-footer__card-icon {
  width: 20px;
  height: 20px;
  color: var(--brand-blue-deep);
  margin-top: 2px;
}

.site-footer__card-label {
  margin: 0 0 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--header-footer-ink);
}

.site-footer__card-text {
  margin: 0 0 4px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--header-footer-ink-soft);
}

.site-footer__card-text:last-child {
  margin-bottom: 0;
}

.site-footer__address {
  margin: 0;
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--header-footer-ink-soft);
}

.site-footer__inline-link {
  color: var(--brand-blue-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__inline-link:hover {
  color: var(--brand-blue);
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(145deg, #ff9ec4, var(--primary-dark));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 6px 18px hsla(330, 55%, 45%, 0.22);
  transition:
    transform var(--transition-fast),
    filter var(--transition-fast);
}

.site-footer__cta:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  text-decoration: none;
}

.site-footer__cta:focus-visible {
  outline: 3px solid hsla(198, 38%, 22%, 0.4);
  outline-offset: 3px;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.site-footer__social-link,
.site-header__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid hsla(188, 28%, 32%, 0.14);
  color: var(--header-footer-ink);
  text-decoration: none;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.site-footer__social-link:hover,
.site-header__social-link:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: hsla(188, 28%, 32%, 0.22);
  box-shadow: 0 8px 20px hsla(188, 35%, 28%, 0.1);
  transform: translateY(-2px);
}

.site-footer__social-link:focus-visible,
.site-header__social-link:focus-visible {
  outline: 3px solid hsla(198, 38%, 22%, 0.35);
  outline-offset: 2px;
}

.site-footer__icon,
.site-header__icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.site-footer__icon--instagram,
.site-header__icon--instagram {
  fill: none;
  stroke: currentColor;
}

.site-footer__icon--instagram .insta-dot,
.site-header__icon--instagram .insta-dot {
  fill: currentColor;
  stroke: none;
}

.site-footer__bottom {
  border-top: 1px solid hsla(188, 28%, 32%, 0.16);
  padding: 16px 0 20px;
  background: hsla(0, 0%, 100%, 0.12);
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: hsla(198, 18%, 32%, 0.9);
}

.site-footer__stripe {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-footer__stripe i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.site-footer__stripe i:nth-child(1) { background: var(--primary-dark); }
.site-footer__stripe i:nth-child(2) { background: var(--accent-yellow); }
.site-footer__stripe i:nth-child(3) { background: rgb(100, 178, 208); }
.site-footer__stripe i:nth-child(4) { background: var(--brand-blue); }

.section {
  padding: clamp(64px, 10vw, 88px) 0;
}

/* Fundo contínuo: bolinhas no main + secções transparentes (sem faixas entre blocos) */
main {
  position: relative;
  isolation: isolate;
  background: transparent;
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(16, 138, 177, 0.52) 2.5px, transparent 3.5px),
    radial-gradient(circle, rgba(245, 142, 177, 0.55) 2.5px, transparent 3.5px),
    radial-gradient(circle, hsla(60, 93%, 58%, 0.58) 2.5px, transparent 3.5px),
    radial-gradient(circle, rgba(52, 185, 150, 0.5) 2.5px, transparent 3.5px);
  background-size:
    132px 132px,
    176px 176px,
    204px 204px,
    152px 152px;
  background-position:
    14px 26px,
    72px 112px,
    38px 176px,
    118px 48px;
}

main > .section {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

main > .section:not(.cta-final) > .container {
  position: relative;
  padding: clamp(36px, 5vw, 56px) clamp(26px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 3px solid rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 28px rgba(16, 138, 177, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  cursor: default;
}

main > .section:nth-of-type(1):not(.cta-final) > .container {
  border-color: rgba(245, 142, 177, 0.7);
}

main > .section:nth-of-type(2):not(.cta-final) > .container {
  border-color: rgba(16, 138, 177, 0.55);
}

main > .section:nth-of-type(3):not(.cta-final) > .container {
  border-color: rgba(210, 170, 0, 0.55);
}

main > .section:nth-of-type(4):not(.cta-final) > .container {
  border-color: rgba(245, 142, 177, 0.6);
}

main > .section:nth-of-type(5):not(.cta-final) > .container {
  border-color: rgba(16, 138, 177, 0.62);
}

main > .section:nth-of-type(6):not(.cta-final) > .container {
  border-color: rgba(52, 185, 150, 0.55);
}

main > .section:nth-of-type(7):not(.cta-final) > .container {
  border-color: rgba(245, 142, 177, 0.62);
}

main > .section:nth-of-type(8):not(.cta-final) > .container {
  border-color: rgba(16, 138, 177, 0.55);
}

main > .section:not(#servicos):not(.cta-final) > .container:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 44px rgba(16, 138, 177, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

main > #servicos > .container {
  cursor: default;
}

main > #servicos > .container:hover {
  transform: none;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 28px rgba(16, 138, 177, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

main > .section.cta-final {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    hsla(186, 55%, 94%, 0.65) 100%
  );
}

.reveal {
  --reveal-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --reveal-dur: 0.72s;
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0);
  transition:
    opacity var(--reveal-dur) var(--reveal-ease),
    transform var(--reveal-dur) var(--reveal-ease);
  will-change: opacity, transform;
}

.reveal.reveal--enter-up:not(.is-visible) {
  transform: translate3d(0, -1.75rem, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) !important;
}

/* Conteúdo interno entra em cascata (hero + seções com .container). */
.reveal .container > * {
  opacity: 0;
  transform: translate3d(0, 1.1rem, 0);
  transition:
    opacity 0.58s var(--reveal-ease),
    transform 0.58s var(--reveal-ease);
}

.reveal:not(.is-visible) .container > * {
  transition-delay: 0s !important;
}

.reveal.is-visible .container > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal.is-visible .container > *:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal.is-visible .container > *:nth-child(2) {
  transition-delay: 0.11s;
}
.reveal.is-visible .container > *:nth-child(3) {
  transition-delay: 0.17s;
}
.reveal.is-visible .container > *:nth-child(4) {
  transition-delay: 0.23s;
}
.reveal.is-visible .container > *:nth-child(5) {
  transition-delay: 0.29s;
}
.reveal.is-visible .container > *:nth-child(6) {
  transition-delay: 0.35s;
}
.reveal.is-visible .container > *:nth-child(7) {
  transition-delay: 0.41s;
}
.reveal.is-visible .container > *:nth-child(8) {
  transition-delay: 0.47s;
}

h1,
h2,
h3 {
  line-height: 1.25;
  margin-top: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

.eyebrow {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.lead {
  font-size: 1.08rem;
}

.hero {
  position: relative;
  padding-top: 52px;
  padding-bottom: 8px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 -1px 0 rgba(16, 138, 177, 0.08) inset,
    0 -20px 50px -24px rgba(16, 138, 177, 0.15);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-media__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(243, 241, 247, 0.92) 0%,
      rgba(243, 241, 247, 0.55) 38%,
      rgba(243, 241, 247, 0.18) 62%,
      transparent 78%
    ),
    radial-gradient(
      ellipse 70% 55% at 88% 42%,
      rgba(16, 138, 177, 0.1) 0%,
      transparent 68%
    );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
}

.hero-content,
.form-card,
.cta-final .container {
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 6px 16px rgba(15, 23, 42, 0.06),
    0 22px 48px -18px rgba(16, 138, 177, 0.16),
    0 4px 0 rgba(245, 142, 177, 0.18);
  transition:
    transform var(--transition-smooth),
    box-shadow var(--transition-smooth),
    border-color var(--transition-smooth),
    background var(--transition-smooth);
}

.service-card {
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 6px 16px rgba(15, 23, 42, 0.05),
    0 18px 40px -16px rgba(15, 23, 42, 0.1),
    0 4px 0 rgba(245, 142, 177, 0.14);
  transition:
    transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.3s ease,
    filter 0.3s ease;
  cursor: pointer;
}

.hero-content {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    152deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(232, 252, 241, 0.9) 32%,
    rgba(255, 232, 240, 0.88) 72%,
    rgba(255, 248, 210, 0.85) 100%
  );
  border: 2px solid rgba(16, 138, 177, 0.28);
  backdrop-filter: blur(10px);
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(186, 242, 215, 0.55) 0%, transparent 42%),
    radial-gradient(circle at 92% 88%, rgba(254, 179, 200, 0.45) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content__ornament {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content__spark {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
}

.hero-content__spark--1 {
  width: 120px;
  height: 120px;
  top: -36px;
  right: -24px;
  background: radial-gradient(circle, rgba(16, 138, 177, 0.2) 0%, transparent 70%);
}

.hero-content__spark--2 {
  width: 80px;
  height: 80px;
  bottom: 18%;
  left: -20px;
  background: radial-gradient(circle, rgba(245, 142, 177, 0.35) 0%, transparent 72%);
}

.hero-content__spark--3 {
  width: 56px;
  height: 56px;
  top: 42%;
  right: 12%;
  background: radial-gradient(circle, hsla(60, 93%, 66%, 0.5) 0%, transparent 70%);
}

.hero-content__inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
}

.hero-eyebrow__brand {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue-deep);
}

.hero-eyebrow__loc {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--header-footer-ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 138, 177, 0.22);
  box-shadow: 0 2px 8px rgba(16, 138, 177, 0.08);
}

.hero-title {
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 14px;
  text-wrap: balance;
}

.hero-title em {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 650;
  font-variation-settings: "SOFT" 50, "WONK" 0.8;
  color: var(--brand-blue-deep);
  letter-spacing: -0.01em;
}

.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.62;
  color: hsl(198, 18%, 28%);
  margin: 0 0 18px;
  max-width: 52ch;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
  border: 1.5px solid transparent;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}

.hero-pill--blue {
  background: rgba(175, 224, 238, 0.75);
  border-color: rgba(16, 138, 177, 0.28);
}

.hero-pill--rose {
  background: rgba(252, 220, 232, 0.9);
  border-color: rgba(245, 142, 177, 0.35);
}

.hero-pill--amber {
  background: hsla(60, 93%, 66%, 0.55);
  border-color: hsla(48, 80%, 46%, 0.28);
}

.hero-pill--mint {
  background: rgba(212, 238, 224, 0.9);
  border-color: rgba(52, 185, 150, 0.32);
}

.hero-detail {
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(16, 138, 177, 0.14);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.hero-detail p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.58;
  color: hsl(198, 14%, 32%);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions .btn {
  flex: 1 1 auto;
  min-width: 168px;
  justify-content: center;
}

.reveal.is-visible .hero-content__inner > * {
  animation: hero-item-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.is-visible .hero-content__inner > *:nth-child(1) { animation-delay: 0.05s; }
.reveal.is-visible .hero-content__inner > *:nth-child(2) { animation-delay: 0.12s; }
.reveal.is-visible .hero-content__inner > *:nth-child(3) { animation-delay: 0.19s; }
.reveal.is-visible .hero-content__inner > *:nth-child(4) { animation-delay: 0.26s; }
.reveal.is-visible .hero-content__inner > *:nth-child(5) { animation-delay: 0.33s; }
.reveal.is-visible .hero-content__inner > *:nth-child(6) { animation-delay: 0.4s; }
.reveal.is-visible .hero-content__inner > *:nth-child(7) { animation-delay: 0.47s; }

@keyframes hero-item-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    158deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(254, 220, 232, 0.88) 28%,
    rgba(255, 248, 210, 0.86) 62%,
    rgba(186, 242, 215, 0.82) 100%
  );
  border: 2px solid rgba(245, 142, 177, 0.38);
  backdrop-filter: blur(10px);
}

.form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 94% 8%, rgba(254, 179, 200, 0.5) 0%, transparent 38%),
    radial-gradient(circle at 4% 92%, rgba(16, 138, 177, 0.12) 0%, transparent 42%);
  pointer-events: none;
}

.form-card__ornament {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.form-card__spark {
  position: absolute;
  border-radius: 50%;
}

.form-card__spark--1 {
  width: 140px;
  height: 140px;
  top: -48px;
  left: -32px;
  background: radial-gradient(circle, hsla(60, 93%, 66%, 0.45) 0%, transparent 70%);
}

.form-card__spark--2 {
  width: 100px;
  height: 100px;
  bottom: 8%;
  right: -28px;
  background: radial-gradient(circle, rgba(16, 138, 177, 0.18) 0%, transparent 72%);
}

.form-card__inner {
  position: relative;
  z-index: 1;
}

.form-card__header {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 138, 177, 0.14);
}

.form-card__intro {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: hsl(198, 16%, 32%);
  max-width: 36ch;
}

.form-card .section-title--compact {
  margin-bottom: 0;
}

.form-card .section-title__icon--rose {
  background: rgba(254, 179, 200, 0.65);
  color: var(--brand-blue-deep);
}

.form-card__form {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-card .form-field {
  margin-bottom: 14px;
}

.form-card .form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(198, 28%, 26%);
}

.form-card .form-field input,
.form-card .form-field select,
.form-card .form-select-wrap select {
  width: 100%;
  margin-bottom: 0;
  padding: 13px 15px;
  border: 1.5px solid rgba(16, 138, 177, 0.18);
  border-radius: 14px;
  font: inherit;
  font-size: 0.98rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 2px 8px rgba(15, 23, 42, 0.04);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.form-card .form-field input::placeholder {
  color: hsl(198, 10%, 52%);
}

.form-card .form-field input:hover,
.form-card .form-field select:hover {
  border-color: rgba(245, 142, 177, 0.45);
  background: #fff;
}

.form-card .form-field input:focus,
.form-card .form-field select:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: #fff;
  box-shadow:
    0 0 0 3px rgba(16, 138, 177, 0.18),
    0 4px 14px rgba(16, 138, 177, 0.1);
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  opacity: 0.75;
}

.form-card .form-select-wrap select {
  appearance: none;
  padding-right: 40px;
  cursor: pointer;
}

.form-card .form-group--radio {
  margin-bottom: 16px;
}

.form-card .form-group--radio > label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(198, 28%, 26%);
}

.form-card .form-radio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

.form-card .radio-option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 8px;
  margin: 0;
  border-radius: 14px;
  border: 1.5px solid rgba(16, 138, 177, 0.16);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.form-card .radio-option__text {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  color: hsl(198, 18%, 28%);
}

.form-card .radio-option input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.form-card .radio-option:hover {
  border-color: rgba(245, 142, 177, 0.5);
  background: rgba(255, 255, 255, 0.95);
}

.form-card .radio-option:has(input:checked) {
  border-color: var(--brand-blue);
  background: linear-gradient(
    145deg,
    rgba(179, 235, 242, 0.55) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  box-shadow:
    0 0 0 1px rgba(16, 138, 177, 0.12),
    0 6px 16px rgba(16, 138, 177, 0.12);
}

.form-card .radio-option:has(input:checked) .radio-option__text {
  color: var(--brand-blue-deep);
}

.form-card .radio-option:has(input:focus-visible) {
  outline: 3px solid rgba(16, 138, 177, 0.35);
  outline-offset: 2px;
}

.form-submit {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 142, 177, 0.25);
}

.form-card .btn-form-submit {
  width: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-radius: 16px;
  background: linear-gradient(
    165deg,
    hsl(56, 94%, 78%) 0%,
    var(--accent-yellow) 45%,
    hsl(48, 88%, 58%) 100%
  );
  color: hsl(198, 42%, 18%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 10px 24px rgba(245, 142, 177, 0.22),
    0 4px 0 rgba(16, 138, 177, 0.2);
}

.form-card .btn-form-submit:hover {
  background: linear-gradient(
    165deg,
    hsl(56, 96%, 82%) 0%,
    #f7e96a 50%,
    hsl(48, 86%, 54%) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 14px 28px rgba(16, 138, 177, 0.18),
    0 5px 0 rgba(245, 142, 177, 0.35);
}

.form-card .privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  font-weight: 600;
  color: hsl(198, 14%, 34%);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(16, 138, 177, 0.1);
}

.privacy-note__icon {
  flex-shrink: 0;
  display: flex;
  margin-top: 1px;
  color: var(--brand-blue);
}

.form-card .form-feedback {
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid transparent;
}

.form-card .form-feedback.success {
  border-color: rgba(17, 101, 48, 0.2);
}

.form-card .form-feedback.error {
  border-color: rgba(159, 18, 57, 0.2);
}

.reveal.is-visible .form-card__inner > * {
  animation: hero-item-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal.is-visible .form-card__inner > *:nth-child(1) { animation-delay: 0.08s; }
.reveal.is-visible .form-card__inner > *:nth-child(2) { animation-delay: 0.16s; }
.reveal.is-visible .form-card__inner > *:nth-child(3) { animation-delay: 0.24s; }

/* Terapia Ocupacional — azul pastel (cartão sobre fundo confetti) */
.service-card--blue {
  background: linear-gradient(
    150deg,
    rgb(146, 212, 230) 0%,
    rgb(175, 224, 238) 55%,
    rgb(201, 235, 245) 100%
  );
  border: 2px solid rgba(16, 138, 177, 0.35);
}

.service-card--blue h3 {
  color: #000;
  font-weight: 800;
}

.service-card--blue p {
  color: #000;
  font-weight: 500;
}

/* Psicologia — rosa pastel */
.service-card--pink {
  background: linear-gradient(
    150deg,
    rgb(248, 186, 208) 0%,
    rgb(250, 203, 220) 55%,
    rgb(252, 220, 232) 100%
  );
  border: 2px solid rgba(245, 142, 177, 0.4);
}

.service-card--pink h3 {
  color: #000;
  font-weight: 800;
}

.service-card--pink p {
  color: #000;
  font-weight: 500;
}

/* Fonoaudiologia — amarelo da marca */
.service-card--yellow {
  background: linear-gradient(150deg, hsl(48, 95%, 52%) 0%, hsl(60, 93%, 66%) 55%, hsl(65, 90%, 74%) 100%);
  border: 2px solid hsl(48, 80%, 45%);
}

.service-card--yellow h3 {
  color: #000;
  font-weight: 800;
}

.service-card--yellow p {
  color: #000;
  font-weight: 500;
}

/* Fisioterapia — menta / lavanda suave */
.service-card--mint {
  background: linear-gradient(
    150deg,
    rgb(196, 230, 214) 0%,
    rgb(212, 238, 224) 50%,
    rgb(228, 245, 236) 100%
  );
  border: 2px solid rgba(52, 185, 150, 0.38);
}

.service-card--mint h3 {
  color: #000;
  font-weight: 800;
}

.service-card--mint p {
  color: #000;
  font-weight: 500;
}

.cta-final .container,
.cta-final__card {
  background: linear-gradient(
    165deg,
    #fafcfd 0%,
    var(--header-footer-surface-light) 48%,
    #f2f9f5 100%
  );
  border: 2px solid rgba(16, 138, 177, 0.28);
  isolation: isolate;
}

.hero-content:hover,
.hero-content:focus-within {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 12px 32px rgba(15, 23, 42, 0.1),
    0 28px 56px -14px rgba(16, 138, 177, 0.22),
    0 6px 0 rgba(245, 142, 177, 0.28);
  border-color: rgb(16, 138, 177);
}

.form-card:hover,
.form-card:focus-within {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 12px 32px rgba(15, 23, 42, 0.08),
    0 28px 56px -14px rgba(245, 142, 177, 0.28),
    0 6px 0 rgba(16, 138, 177, 0.18);
  border-color: #f58eb1;
}

/* Animações específicas para cada card colorido */

.service-card--mint:hover {
  transform: translateY(-12px) scale(1.12) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 28px 56px rgba(52, 185, 150, 0.28),
    0 10px 0 rgba(52, 185, 150, 0.35);
  filter: brightness(1.06) saturate(1.08) !important;
  z-index: 2;
}

/* TESTE: Força as animações dos cards para funcionar */
.service-card:hover {
  transform: translateY(-15px) scale(1.15) !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
}

.service-card--blue:hover {
  transform: translateY(-12px) scale(1.12) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 28px 56px rgba(16, 138, 177, 0.35),
    0 10px 0 rgba(16, 138, 177, 0.45) !important;
  filter: brightness(1.12) saturate(1.15) !important;
  z-index: 2;
}

.service-card--pink:hover {
  transform: translateY(-12px) scale(1.12) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 28px 56px rgba(245, 142, 177, 0.35),
    0 10px 0 rgba(245, 142, 177, 0.45) !important;
  filter: brightness(1.12) saturate(1.15) !important;
  z-index: 2;
}

.service-card--yellow:hover {
  transform: translateY(-12px) scale(1.12) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 28px 56px hsla(60, 93%, 66%, 0.45),
    0 10px 0 hsl(60, 93%, 50%) !important;
  filter: brightness(1.12) saturate(1.15) !important;
  z-index: 2;
}

.service-card:active {
  transform: translateY(-4px) scale(1.02);
}

.cta-final .container:hover,
.cta-final .container:focus-within,
.cta-final__card:hover,
.cta-final__card:focus-within {
  transform: translateY(-5px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 16px 40px rgba(16, 138, 177, 0.14),
    0 28px 52px -12px rgba(245, 142, 177, 0.22),
    0 5px 0 rgba(16, 138, 177, 0.2);
  border-color: rgba(16, 138, 177, 0.45);
}

.hero-content {
  padding: clamp(26px, 3.5vw, 38px);
}

.form-card {
  padding: clamp(22px, 3vw, 30px);
}

.form-card .section-title h2 {
  font-size: 1.45rem;
  margin-bottom: 0;
}

.section-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.section-title h2 {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

.section-title--compact {
  margin-bottom: 12px;
  align-items: center;
}

.section-title--compact .section-title__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.section-title--compact .section-title__icon svg {
  width: 22px;
  height: 22px;
}

.section-title--centered {
  justify-content: center;
  text-align: left;
}

.section-title--centered h2 {
  flex: 0 1 auto;
  max-width: 100%;
  text-align: center;
}

.section-title__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 16px;
  color: var(--brand-blue);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 6px 14px rgba(15, 23, 42, 0.08);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

.section-title__icon svg {
  width: 26px;
  height: 26px;
}

.section-title__icon--mint {
  background: rgba(186, 242, 215, 0.55);
}

.section-title__icon--rose {
  background: rgba(254, 179, 200, 0.45);
}

.section-title__icon--sky {
  background: rgba(16, 138, 177, 0.14);
}

.section-title:hover .section-title__icon {
  transform: scale(1.06) translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 10px 22px rgba(16, 138, 177, 0.18);
}

label,
legend {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
}

input,
select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(90, 60, 80, 0.18);
  border-radius: 12px;
  margin-bottom: 14px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow:
    0 0 0 3px rgba(16, 138, 177, 0.2),
    0 2px 8px rgba(16, 138, 177, 0.08);
}

.form-group {
  margin-bottom: 14px;
}

.form-group > label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
}

fieldset {
  border: 1px solid rgba(90, 60, 80, 0.15);
  border-radius: 14px;
  padding: 14px;
  margin: 0;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  min-inline-size: 0;
}

fieldset legend {
  display: none;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
}

.radio-option input {
  width: auto;
  margin: 0;
  accent-color: var(--brand-blue);
  transform: translateY(-0.5px);
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 14px;
  padding: 14px 24px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    filter var(--transition-fast),
    box-shadow var(--transition-fast);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.45) inset,
    0 8px 20px rgba(15, 23, 42, 0.12);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 12px 28px rgba(15, 23, 42, 0.14);
}

.btn:focus-visible {
  outline: 3px solid rgba(16, 138, 177, 0.35);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(180deg, #f7e96a, var(--accent-yellow));
  color: var(--text);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #f2e150, #ecd941);
}

.btn-secondary {
  background: linear-gradient(180deg, #96e9c6, var(--mint));
  color: var(--text);
  margin-top: 8px;
}

.privacy-note {
  font-size: 0.9rem;
  margin-top: 10px;
}

.form-feedback {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.form-feedback.success {
  display: block;
  background: var(--success-bg);
  color: var(--success-text);
}

.form-feedback.error {
  display: block;
  background: var(--error-bg);
  color: var(--error-text);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
  overflow: visible;
}

.service-card {
  position: relative;
}

.gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.gallery__viewport {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(16, 138, 177, 0.25);
  scrollbar-width: none;
}

.gallery__viewport::-webkit-scrollbar {
  display: none;
}

.gallery__item {
  margin: 0;
  scroll-snap-align: center;
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.5);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(16, 138, 177, 0.92);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(16, 138, 177, 0.25);
  transition:
    transform var(--transition-fast),
    filter var(--transition-fast),
    box-shadow var(--transition-fast);
}

.gallery__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 24px rgba(16, 138, 177, 0.3);
}

.gallery__btn:focus-visible {
  outline: 3px solid rgba(245, 142, 177, 0.45);
  outline-offset: 2px;
}

.gallery__dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gallery__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(16, 138, 177, 0.25);
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    background-color var(--transition-fast);
}

.gallery__dot.is-active {
  background: #f58eb1;
  transform: scale(1.2);
}

.service-card {
  padding: 24px;
}

.service-card h3 {
  font-weight: 700;
  letter-spacing: -0.015em;
}

.section h2 {
  color: var(--text);
}

.hero-content h1,
.hero-content h2 {
  color: var(--text);
}

.cta-final .container,
.cta-final__card {
  padding: clamp(28px, 4vw, 40px) clamp(22px, 4vw, 36px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 40rem;
  margin-inline: auto;
}

.cta-final__title-wrap {
  margin-bottom: 18px;
  width: 100%;
}

.cta-final__title-wrap h2 {
  text-wrap: balance;
}

.cta-final__place {
  font-weight: 800;
  color: var(--brand-blue-deep);
}

.cta-final__lead {
  margin: 0 0 22px;
  max-width: 34em;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text);
}

.cta-final__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: min(100%, 280px);
  padding: 16px 28px;
  font-size: 1rem;
  border-radius: 999px;
  background: linear-gradient(
    165deg,
    hsl(56, 94%, 78%) 0%,
    var(--accent-yellow) 45%,
    hsl(48, 88%, 58%) 100%
  );
  color: hsl(198, 42%, 18%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 10px 26px rgba(245, 142, 177, 0.22),
    0 4px 0 rgba(16, 138, 177, 0.22);
}

.cta-final__btn:hover {
  background: linear-gradient(
    165deg,
    hsl(56, 96%, 82%) 0%,
    #f7e96a 50%,
    hsl(48, 86%, 54%) 100%
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 14px 30px rgba(16, 138, 177, 0.18),
    0 5px 0 rgba(245, 142, 177, 0.3);
}

.cta-final__btn-arrow {
  font-size: 1.15em;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.cta-final__btn:hover .cta-final__btn-arrow {
  transform: translateX(4px);
}

.cta-final__stripe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}

.cta-final__stripe i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.cta-final__stripe i:nth-child(1) { background: var(--primary-dark); }
.cta-final__stripe i:nth-child(2) { background: var(--accent-yellow); }
.cta-final__stripe i:nth-child(3) { background: rgb(100, 178, 208); }
.cta-final__stripe i:nth-child(4) { background: var(--brand-blue); }


@media (max-width: 960px) {
  .hero {
    min-height: 74svh;
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-media__veil {
    background:
      linear-gradient(
        180deg,
        rgba(243, 241, 247, 0.88) 0%,
        rgba(243, 241, 247, 0.5) 45%,
        rgba(243, 241, 247, 0.2) 100%
      );
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-title {
    font-size: clamp(1.8rem, 4.2vw, 2.3rem);
  }

  .hero-lead {
    max-width: 100%;
  }

  .hero-detail {
    padding: 18px;
  }

  .form-card {
    width: 100%;
    margin-top: 12px;
  }

  .site-nav {
    justify-content: center;
    gap: 10px 14px;
    padding-top: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav a {
    padding: 10px 12px;
    font-size: 0.82rem;
    min-width: 100px;
    text-align: center;
  }

  .site-header__toggle {
    display: inline-flex;
    width: auto;
    max-width: fit-content;
  }

  .site-header__actions {
    justify-content: flex-end;
    width: auto;
    position: relative;
  }

  .site-header__top {
    align-items: center;
  }

  .site-header {
    overflow: visible;
  }

  .site-header__toggle {
    position: fixed;
    top: calc(12px + env(safe-area-inset-top, 0px));
    right: 16px;
    z-index: 1001;
  }

  .site-nav {
    position: fixed;
    top: calc(56px + env(safe-area-inset-top, 0px));
    left: 50%;
    right: auto;
    z-index: 1000;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    gap: 4px;
    width: min(360px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    padding: 18px 16px 16px;
    background:
      radial-gradient(circle at 94% -4%, rgba(254, 179, 200, 0.38) 0%, transparent 44%),
      radial-gradient(circle at 0% 106%, rgba(186, 242, 215, 0.42) 0%, transparent 46%),
      linear-gradient(170deg, #ffffff 0%, #f2fbfd 55%, #fef4f8 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.92);
    border-radius: 26px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      0 12px 32px rgba(16, 138, 177, 0.14),
      0 28px 64px -18px hsla(188, 45%, 25%, 0.3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform-origin: top center;
    transform: translateX(-50%) translateY(-12px) scale(0.94);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.26s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  /* Faixa decorativa com as 4 cores da marca no topo do menu */
  .site-nav::before {
    content: "";
    height: 5px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: linear-gradient(
      90deg,
      #f7a3c2 0%,
      hsl(60, 88%, 68%) 34%,
      #7dcee0 68%,
      #8fe8b6 100%
    );
  }

  .site-header.menu-open .site-nav {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    text-align: left;
    border-radius: 14px;
    border: 1px solid transparent;
    opacity: 0;
    transition:
      background var(--transition-fast),
      color var(--transition-fast),
      border-color var(--transition-fast),
      box-shadow var(--transition-fast);
  }

  .site-nav a::after {
    display: none;
  }

  /* Bolinha colorida da marca à esquerda de cada link */
  .site-nav a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.75);
    transition: transform var(--transition-fast);
  }

  .site-nav a:nth-child(4n + 1)::before { background: #f58eb1; }
  .site-nav a:nth-child(4n + 2)::before { background: hsl(50, 92%, 55%); }
  .site-nav a:nth-child(4n + 3)::before { background: #46b4cf; }
  .site-nav a:nth-child(4n)::before { background: #4fce96; }

  .site-header.menu-open .site-nav a {
    animation: menu-link-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .site-header.menu-open .site-nav a:nth-child(1) { animation-delay: 0.06s; }
  .site-header.menu-open .site-nav a:nth-child(2) { animation-delay: 0.1s; }
  .site-header.menu-open .site-nav a:nth-child(3) { animation-delay: 0.14s; }
  .site-header.menu-open .site-nav a:nth-child(4) { animation-delay: 0.18s; }
  .site-header.menu-open .site-nav a:nth-child(5) { animation-delay: 0.22s; }
  .site-header.menu-open .site-nav a:nth-child(6) { animation-delay: 0.26s; }
  .site-header.menu-open .site-nav a:nth-child(7) { animation-delay: 0.3s; }
  .site-header.menu-open .site-nav a:nth-child(8) { animation-delay: 0.34s; }

  @keyframes menu-link-in {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(16, 138, 177, 0.2);
    box-shadow: 0 6px 16px rgba(16, 138, 177, 0.1);
    color: var(--header-footer-ink);
  }

  .site-nav a:hover::before,
  .site-nav a:focus-visible::before {
    transform: scale(1.4);
  }

  .site-header__social {
    width: 100%;
    justify-content: flex-end;
  }

  .site-header__brand {
    width: 100%;
  }

  .site-header__brand-copy {
    min-width: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery__viewport {
    scroll-snap-type: x mandatory;
  }

  .gallery__btn {
    display: none;
  }

  .gallery__dots {
    gap: 10px;
  }

  .gallery__dot {
    width: 14px;
    height: 14px;
  }

  .modal-dialog {
    max-height: min(92dvh, 100%);
  }

  .modal-close {
    width: 44px;
    height: 44px;
    top: 14px;
    right: 14px;
  }

  .modal-header {
    padding: 22px 22px 16px;
  }

  .modal-body {
    padding: 20px 22px 24px;
  }

  .site-header__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .site-header__social {
    justify-content: center;
  }

  .btn-header-cta {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 68svh;
  }

  .hero-media img {
    object-fit: contain;
    object-position: center top;
    background: rgba(16, 138, 177, 0.16);
  }

  .section {
    padding: 56px 0;
  }

  .hero-content,
  .form-card,
  .service-card,
  .cta-final .container {
    padding: 24px;
  }

  .hero-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions .btn {
    min-height: 52px;
  }

  .form-card {
    padding: 22px;
  }

  .form-card .form-field label {
    font-size: 0.9rem;
  }

  .form-card .form-field input,
  .form-card .form-field select,
  .form-card .form-select-wrap select {
    padding: 16px 16px;
  }

  .form-card .btn-form-submit {
    min-height: 54px;
    width: 100%;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery__item {
    aspect-ratio: 4 / 3;
  }

  .gallery__btn {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "contact";
  }

  .site-footer__brand {
    align-items: center;
    text-align: center;
  }

  .site-footer__logo-link {
    align-self: center;
  }
}

@media (max-width: 520px) {
  .form-card .form-radio-grid {
    grid-template-columns: 1fr;
  }

  .form-card .radio-option {
    min-height: 46px;
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .form-card .radio-option__text {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "contact";
    justify-items: center;
    text-align: center;
  }

  .site-footer__brand {
    align-items: center;
    text-align: center;
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .site-footer__logo-link {
    align-self: center;
  }

  .site-footer__social {
    justify-content: center;
  }

  .site-footer__cta {
    align-self: center;
  }

  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 480px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal .container > *,
  .reveal.is-visible .container > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-content,
  .form-card,
  .cta-final .container {
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }


  .hero-content:hover,
  .hero-content:focus-within,
  .form-card:hover,
  .form-card:focus-within,
  .cta-final .container:hover,
  .cta-final .container:focus-within,
  .cta-final__card:hover,
  .cta-final__card:focus-within {
    transform: none;
  }

  .cta-final__btn:hover .cta-final__btn-arrow {
    transform: none;
  }

  .reveal.is-visible .hero-content__inner > *,
  .reveal.is-visible .form-card__inner > * {
    animation: none;
    opacity: 1;
    transform: none;
  }

  main > .section:not(.cta-final) > .container:hover {
    transform: none;
  }

  .section-title__icon {
    transition: box-shadow 0.2s ease;
  }

  .section-title:hover .section-title__icon {
    transform: none;
  }

  .btn {
    transition: filter 0.15s ease;
  }
}

@media (max-width: 640px) {
  .cta-final__btn {
    width: 100%;
  }
}

/* =========================
   ANIMAÇÕES DOS CARDS - PRIORIDADE MÁXIMA
   ========================= */

.service-card--blue:hover,
.service-card--pink:hover, 
.service-card--yellow:hover,
.service-card--mint:hover {
  transform: translateY(-15px) scale(1.2) !important;
  transition: transform 0.3s ease !important;
  z-index: 100 !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4) !important;
}

article.service-card:hover {
  transform: translateY(-15px) scale(1.2) !important;
}

/* =====================
   APPROACH TAGS (cards de serviço)
   ===================== */
.approach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 7px;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.approach-tags__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  width: 100%;
  margin-bottom: 2px;
}

.approach-tag {
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  padding: 4px 11px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition:
    background 0.18s,
    border-color 0.18s,
    transform 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}

.approach-tag::after {
  content: "↗";
  font-size: 0.68rem;
  opacity: 0.5;
  transition: opacity 0.15s;
}

.approach-tag:hover {
  background: rgba(16, 138, 177, 0.1);
  border-color: rgba(16, 138, 177, 0.42);
  transform: translateY(-1px);
}

.approach-tag:hover::after {
  opacity: 1;
}

.approach-tag:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 2px;
}

.approach-tag--static {
  cursor: default;
}

.approach-tag--static::after {
  content: none;
}

.approach-tag--static:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(15, 23, 42, 0.12);
  transform: none;
}

/* =====================
   MODAIS
   ===================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 24px);
  animation: modal-backdrop-in 0.2s ease;
}

.modal-backdrop[hidden] {
  display: none;
}

@keyframes modal-backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-dialog {
  position: relative;
  width: min(540px, 100%);
  max-height: min(88dvh, 680px);
  overflow-y: auto;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.7) inset,
    0 28px 72px rgba(15, 23, 42, 0.22);
  animation: modal-dialog-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modal-dialog-in {
  from { opacity: 0; transform: scale(0.94) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(15, 23, 42, 0.07);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}

.modal-close:hover {
  background: rgba(15, 23, 42, 0.13);
}

.modal-close:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 2px;
}

.modal-header {
  padding: 28px 28px 18px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-header--blue   { background: linear-gradient(135deg, rgba(179,235,242,0.55) 0%, rgba(255,255,255,0.12) 100%); }
.modal-header--mint   { background: linear-gradient(135deg, rgba(186,242,215,0.55) 0%, rgba(255,255,255,0.12) 100%); }
.modal-header--rose   { background: linear-gradient(135deg, rgba(254,179,200,0.48) 0%, rgba(255,255,255,0.12) 100%); }
.modal-header--yellow { background: linear-gradient(135deg, hsla(55,90%,78%,0.6) 0%, rgba(255,255,255,0.12) 100%); }
.modal-header--sky    { background: linear-gradient(135deg, rgba(16,138,177,0.12) 0%, rgba(255,255,255,0.08) 100%); }

.modal-header__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-blue);
  margin-bottom: 6px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.modal-header h2 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--text);
  padding-right: 36px;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

.modal-body {
  padding: 18px 28px 28px;
}

.modal-used-by {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0 0 18px;
  padding: 10px 14px;
  background: var(--surface-alt);
  border-radius: 10px;
  line-height: 1.55;
}

.modal-used-by strong {
  color: var(--text);
  font-weight: 700;
}

.modal-body p {
  margin-bottom: 14px;
  line-height: 1.72;
  color: var(--muted);
}

.modal-body p:last-child {
  margin-bottom: 0;
}

/* =====================
   SECÇÃO ABORDAGENS (cards)
   ===================== */
.abordagens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.abordagem-card {
  border-radius: var(--radius);
  padding: 22px 20px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 4px 16px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: default;
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.26s ease;
}

.abordagem-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 32px rgba(16, 138, 177, 0.1);
}

.abordagem-card--blue   { border-color: rgba(16, 138, 177, 0.32); }
.abordagem-card--mint   { border-color: rgba(52, 185, 150, 0.38); }
.abordagem-card--rose   { border-color: rgba(245, 142, 177, 0.4); }
.abordagem-card--yellow { border-color: hsla(48, 80%, 46%, 0.32); }
.abordagem-card--amber  { border-color: hsla(38, 88%, 48%, 0.34); }
.abordagem-card--sky    { border-color: rgba(16, 138, 177, 0.28); }
.abordagem-card--teal   { border-color: rgba(16, 138, 177, 0.42); }

.abordagem-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-blue);
  margin-bottom: 4px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.abordagem-card--rose  .abordagem-card__icon { color: var(--primary-dark); }
.abordagem-card--mint  .abordagem-card__icon { color: hsl(152, 55%, 38%); }
.abordagem-card--yellow .abordagem-card__icon { color: hsl(40, 80%, 32%); }
.abordagem-card--amber .abordagem-card__icon { color: hsl(32, 75%, 36%); }
.abordagem-card--teal  .abordagem-card__icon { color: hsl(188, 55%, 34%); }

.abordagem-card h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--text);
  line-height: 1.3;
}

.abordagem-card__sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

.abordagem-card__professions {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 4px 0 8px;
  line-height: 1.5;
}

.abordagem-card__professions strong {
  color: var(--text);
  font-weight: 600;
}

.abordagem-card__cta {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--brand-blue);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  transition: gap 0.18s ease, color 0.16s;
}

.abordagem-card__cta:hover {
  gap: 9px;
  color: var(--brand-blue-deep);
}

.abordagem-card__cta:focus-visible {
  outline: 3px solid var(--brand-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .modal-backdrop,
  .modal-dialog {
    animation: none;
  }

  .abordagem-card {
    transition: none;
  }

  .abordagem-card:hover {
    transform: none;
  }
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  z-index: 9990;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(22px, env(safe-area-inset-bottom, 0px));
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #3fe984, #25d366);
  color: #fff;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.28) inset,
    0 14px 34px rgba(6, 95, 70, 0.38);
  text-decoration: none;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    filter 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.07);
  filter: brightness(1.06);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.32) inset,
    0 18px 40px rgba(6, 95, 70, 0.42);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--brand-blue-deep);
  outline-offset: 4px;
}

.whatsapp-float__icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: box-shadow 0.2s ease, filter 0.2s ease;
  }

  .whatsapp-float:hover {
    transform: none;
  }
}

/* =====================
   SECTION 2 VARIANT — SOBRE SPLIT LAYOUT
   ===================== */

.sobre-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.sobre-split__lead {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sobre-split__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sobre-split__kicker-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.sobre-split__headline {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0;
  text-wrap: balance;
}

.sobre-split__em {
  font-style: normal;
  background: linear-gradient(
    120deg,
    rgba(254, 179, 200, 0.65) 0%,
    rgba(186, 242, 215, 0.55) 100%
  );
  border-radius: 6px;
  padding: 2px 7px;
  color: var(--primary-dark);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.sobre-split__body {
  border-left: 2px solid rgba(245, 142, 177, 0.32);
  padding-left: clamp(20px, 3vw, 32px);
}

.sobre-split__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .sobre-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sobre-split__body {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid rgba(245, 142, 177, 0.32);
    padding-top: 20px;
  }
}

/* =====================
   SECTION 4 VARIANT — EQUIPE DISCIPLINES
   ===================== */

.equipe-disciplines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.equipe-disc {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.equipe-disc:hover {
  transform: translateY(-4px);
}

.equipe-disc__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  margin-bottom: 2px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  flex-shrink: 0;
}

.equipe-disc__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.equipe-disc__tags {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
}

.equipe-disc--blue {
  background: linear-gradient(
    150deg,
    rgb(200, 232, 244) 0%,
    rgb(222, 243, 251) 100%
  );
  border-color: rgba(16, 138, 177, 0.28);
}

.equipe-disc--blue .equipe-disc__icon {
  color: var(--brand-blue);
}

.equipe-disc--blue:hover {
  box-shadow: 0 10px 26px rgba(16, 138, 177, 0.18);
  border-color: rgba(16, 138, 177, 0.46);
}

.equipe-disc--pink {
  background: linear-gradient(
    150deg,
    rgb(250, 210, 225) 0%,
    rgb(253, 226, 236) 100%
  );
  border-color: rgba(245, 142, 177, 0.35);
}

.equipe-disc--pink .equipe-disc__icon {
  color: var(--primary-dark);
}

.equipe-disc--pink:hover {
  box-shadow: 0 10px 26px rgba(245, 142, 177, 0.22);
  border-color: rgba(245, 142, 177, 0.52);
}

.equipe-disc--yellow {
  background: linear-gradient(
    150deg,
    hsl(50, 92%, 80%) 0%,
    hsl(60, 93%, 88%) 100%
  );
  border-color: hsla(48, 80%, 45%, 0.3);
}

.equipe-disc--yellow .equipe-disc__icon {
  color: hsl(40, 80%, 32%);
}

.equipe-disc--yellow:hover {
  box-shadow: 0 10px 26px hsla(50, 90%, 60%, 0.28);
  border-color: hsla(48, 80%, 45%, 0.48);
}

.equipe-disc--mint {
  background: linear-gradient(
    150deg,
    rgb(196, 235, 217) 0%,
    rgb(216, 245, 229) 100%
  );
  border-color: rgba(52, 185, 150, 0.3);
}

.equipe-disc--mint .equipe-disc__icon {
  color: hsl(152, 55%, 38%);
}

.equipe-disc--mint:hover {
  box-shadow: 0 10px 26px rgba(52, 185, 150, 0.2);
  border-color: rgba(52, 185, 150, 0.5);
}

@media (max-width: 860px) {
  .equipe-disciplines {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .equipe-disciplines {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .equipe-disc {
    padding: 14px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .equipe-disc {
    transition: none;
  }

  .equipe-disc:hover {
    transform: none;
  }
}

/* =====================
   SECTION — FUNDADORA / CEO
   ===================== */

.fundadora-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.fundadora-photo {
  position: relative;
  width: min(320px, 100%);
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, rgb(248, 186, 208) 0%, rgb(175, 224, 238) 100%);
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.fundadora-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.fundadora-photo__fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 4.5rem;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 4px 18px rgba(15, 23, 42, 0.18);
}

.fundadora-photo--fallback .fundadora-photo__fallback {
  display: flex;
}

.fundadora-photo__badge {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.fundadora-photo__badge-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.2;
}

.fundadora-photo__badge-role {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue-deep);
}

.fundadora-content {
  min-width: 0;
  position: relative;
  padding-top: 1rem;
}

.fundadora-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--brand-blue));
  opacity: 0.9;
}

.fundadora-content p {
  margin: 0;
}

.fundadora-content p + p {
  margin-top: 1.35rem;
}

.fundadora-highlights {
  margin: 1.4rem 0 0;
  padding: 0;
}

@media (max-width: 780px) {
  .fundadora-split {
    grid-template-columns: 1fr;
  }
}

/* ===== Ferramentas de acessibilidade ===== */

.a11y-widget {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 1200;
}

.a11y-widget__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(150deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 10px 26px rgba(10, 118, 152, 0.38);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.a11y-widget__toggle:hover,
.a11y-widget__toggle:focus-visible {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 14px 32px rgba(10, 118, 152, 0.45);
}

.a11y-widget__toggle:focus-visible {
  outline: 3px solid hsla(198, 38%, 22%, 0.5);
  outline-offset: 3px;
}

.a11y-widget__toggle svg {
  width: 30px;
  height: 30px;
}

.a11y-widget__panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  width: min(272px, calc(100vw - 36px));
  padding: 16px 14px 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 94% -4%, rgba(254, 179, 200, 0.38) 0%, transparent 44%),
    radial-gradient(circle at 0% 106%, rgba(186, 242, 215, 0.42) 0%, transparent 46%),
    linear-gradient(170deg, #ffffff 0%, #f2fbfd 55%, #fef4f8 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 32px rgba(16, 138, 177, 0.16),
    0 28px 64px -18px hsla(188, 45%, 25%, 0.3);
  transform-origin: bottom left;
  transform: translateY(10px) scale(0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    visibility 0s linear 0.24s;
}

.a11y-widget.is-open .a11y-widget__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    visibility 0s;
}

.a11y-widget__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--header-footer-ink);
}

/* Faixa com as 4 cores da marca sob o título */
.a11y-widget__title::after {
  content: "";
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #f7a3c2 0%,
    hsl(60, 88%, 68%) 34%,
    #7dcee0 68%,
    #8fe8b6 100%
  );
}

.a11y-widget__row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.a11y-widget__btn {
  flex: 1;
  padding: 10px 8px;
  border-radius: 12px;
  border: 1.5px solid rgba(16, 138, 177, 0.28);
  background: rgba(255, 255, 255, 0.85);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--brand-blue-deep);
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.a11y-widget__btn:hover,
.a11y-widget__btn:focus-visible {
  background: #fff;
  border-color: var(--brand-blue);
  transform: translateY(-1px);
}

.a11y-widget__size {
  min-width: 52px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--header-footer-ink-soft);
}

.a11y-widget__option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 6px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1.5px solid rgba(16, 138, 177, 0.14);
  background: rgba(255, 255, 255, 0.65);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.a11y-widget__option::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(16, 138, 177, 0.45);
  background: #fff;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.a11y-widget__option:hover,
.a11y-widget__option:focus-visible {
  background: #fff;
  border-color: rgba(16, 138, 177, 0.35);
  box-shadow: 0 4px 12px rgba(16, 138, 177, 0.1);
}

.a11y-widget__option[aria-pressed="true"] {
  border-color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 4px 14px rgba(16, 138, 177, 0.16);
}

.a11y-widget__option[aria-pressed="true"]::before {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: inset 0 0 0 3px #fff;
}

.a11y-widget__reset {
  width: 100%;
  margin-top: 4px;
  padding: 11px 12px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(145deg, #ff9ec4, var(--primary-dark));
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 6px 16px rgba(245, 142, 177, 0.3);
  transition: filter var(--transition-fast), transform var(--transition-fast);
}

.a11y-widget__reset:hover,
.a11y-widget__reset:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* --- Modo: alto contraste --- */
body.a11y-contrast {
  --text: #000;
  --muted: #141414;
  --header-footer-ink: #000;
  --header-footer-ink-soft: #10181d;
  --brand-blue: #00546e;
  --brand-blue-deep: #003f53;
}

body.a11y-contrast :is(p, li, address, label, small) {
  color: #000 !important;
}

body.a11y-contrast :is(.site-nav a, .site-footer__list a, .site-footer__card-text, .site-footer__copy, .hero-lead, .form-card__intro) {
  color: #000 !important;
}

body.a11y-contrast main > .section:not(.cta-final) > .container {
  background: rgba(255, 255, 255, 0.98);
  border-color: #000;
}

body.a11y-contrast :is(.hero-content, .form-card) {
  background: #fff;
  border-color: #000;
}

body.a11y-contrast :is(.site-header__name-main, .site-footer__name-main) {
  color: #9c1a55;
}

body.a11y-contrast :is(.site-header__name-main-is, .site-footer__name-main-is) {
  color: #00546e;
}

body.a11y-contrast :is(.btn-header-cta, .site-footer__cta) {
  background: #9c1a55;
  color: #fff;
}

/* --- Modo: fonte legível --- */
body.a11y-font,
body.a11y-font * {
  font-family: "Plus Jakarta Sans", Verdana, "Segoe UI", sans-serif !important;
  font-style: normal !important;
}

/* --- Modo: destacar links --- */
body.a11y-links a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 0.18em !important;
}

/* --- Modo: pausar animações --- */
body.a11y-motion *,
body.a11y-motion *::before,
body.a11y-motion *::after {
  animation-duration: 0.001s !important;
  animation-delay: 0s !important;
  transition-duration: 0.001s !important;
  transition-delay: 0s !important;
}

body.a11y-motion .reveal,
body.a11y-motion .reveal .container > * {
  opacity: 1 !important;
  transform: none !important;
}

html:has(body.a11y-motion) {
  scroll-behavior: auto;
}

@media (max-width: 720px) {
  .a11y-widget {
    left: 12px;
    bottom: 14px;
  }

  .a11y-widget__toggle {
    width: 48px;
    height: 48px;
  }
}

/* O painel cresceu: garante rolagem em telas baixas */
.a11y-widget__panel {
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* --- Modo: narrador --- */
.a11y-reading {
  outline: 3px solid var(--brand-blue) !important;
  outline-offset: 2px;
  border-radius: 4px;
  background: rgba(179, 235, 242, 0.5) !important;
}

/* --- Modo: guia de leitura --- */
.a11y-guide-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 40%;
  height: 46px;
  z-index: 1500;
  pointer-events: none;
  background: hsla(60, 93%, 66%, 0.22);
  border-top: 2px solid hsla(48, 82%, 44%, 0.75);
  border-bottom: 2px solid hsla(48, 82%, 44%, 0.75);
}

body.a11y-guide .a11y-guide-bar {
  display: block;
}

/* --- Modo: espaçamento de texto --- */
body.a11y-spacing,
body.a11y-spacing * {
  letter-spacing: 0.08em !important;
  word-spacing: 0.16em !important;
}

body.a11y-spacing :is(p, li, address, blockquote, .hero-lead, .site-footer__tagline) {
  line-height: 2 !important;
}

/* --- Modo: cursor grande --- */
body.a11y-cursor,
body.a11y-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M8 3 L8 33 L15 26.5 L19.5 37 L25.5 34.5 L21 24.5 L30 24.5 Z' fill='%23ffffff' stroke='%23000000' stroke-width='2.4' stroke-linejoin='round'/%3E%3C/svg%3E") 8 3, auto !important;
}

/* --- Opções com rótulo + descrição explicativa --- */
.a11y-widget__panel {
  width: min(300px, calc(100vw - 36px));
}

.a11y-widget__group-label {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--header-footer-ink-soft);
}

.a11y-widget__option {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  column-gap: 10px;
}

.a11y-widget__option::before {
  margin-top: 2px;
}

.a11y-widget__option-label {
  grid-column: 2;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}

.a11y-widget__option-desc {
  grid-column: 2;
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--muted);
}

.a11y-widget__option[aria-pressed="true"] .a11y-widget__option-label {
  color: var(--brand-blue-deep);
}
