/* =============================================
   VARIAVEIS
   ============================================= */
:root {
  --navy:        #12346F;
  --navy-dark:   #0D2558;
  --sand:        #C1AA94;
  --sand-light:  #D5C3A9;
  --sand-pale:   #F0EAE0;
  --cream:       #FAF7F4;
  --text:        #2A2824;
  --text-muted:  #6B6057;
  --white:       #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --space-1:   4px;
  --space-2:   8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;

  --max-width: 1200px;
  --gutter:    clamp(24px, 5vw, 80px);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

address {
  font-style: normal;
}

/* =============================================
   FOCO ACESSIVEL
   ============================================= */
:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: 760px;
}

.section {
  padding-block: var(--space-9);
}

.section--sand {
  background-color: var(--sand-pale);
}

.section--navy {
  background-color: var(--navy);
  color: var(--white);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: var(--space-5);
  text-wrap: balance;
}

.section__title--light {
  color: var(--white);
}

.section__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: var(--space-7);
  max-width: 600px;
  text-wrap: pretty;
}

.section__cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-7);
}

/* =============================================
   BOTOES
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 6px;
  transition: background var(--transition), transform 120ms ease, box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

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

.btn--primary:hover {
  background: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(18,52,111,0.22);
}

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

.btn--light:hover {
  background: var(--sand-pale);
  box-shadow: 0 4px 16px rgba(255,255,255,0.15);
}

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

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--sand-light);
  box-shadow: 0 10px 30px rgba(18,52,111,0.08);
}

.navbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 72px;
  gap: var(--space-5);
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 44px;
  min-width: 0;
}

.navbar__logo-img {
  height: 38px;
  width: auto;
  max-width: 180px;
  flex-shrink: 0;
  display: block;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__logo-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--sand-light);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(18,52,111,0.04);
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.navbar__wordmark {
  display: block;
  height: 20px;
  width: auto;
  max-width: 220px;
}

.navbar__meta {
  font-size: 11px;
  line-height: 1.3;
  color: var(--text-muted);
  white-space: nowrap;
}

.navbar__whatsapp-link {
  display: none;
}

.navbar__brand:hover .navbar__logo-img,
.navbar__brand:focus-visible .navbar__logo-img {
  transform: translateY(-1px);
}

.navbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-width: 0;
}

.navbar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition), background-color var(--transition);
}

.navbar__link:hover,
.navbar__link:focus-visible {
  color: var(--navy);
  background: rgba(18,52,111,0.06);
}

.navbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-2);
}

.navbar .btn--sm {
  min-height: 44px;
  box-shadow: 0 8px 20px rgba(18,52,111,0.12);
}

.navbar__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--text);
  flex-shrink: 0;
  transition: color var(--transition), background-color var(--transition);
}

.navbar__hamburger:hover,
.navbar__hamburger:focus-visible {
  color: var(--navy);
  background-color: rgba(18, 52, 111, 0.06);
}

.navbar__hamburger .icon-close {
  display: none;
}

.navbar__hamburger[aria-expanded="true"] .icon-open {
  display: none;
}

.navbar__hamburger[aria-expanded="true"] .icon-close {
  display: block;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background-color: var(--cream);
}

.hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--space-8);
  align-items: center;
  padding-block: var(--space-9);
  width: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__pretitle {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-4);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: var(--space-5);
  text-wrap: balance;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  max-width: 500px;
  text-wrap: pretty;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--sand-light);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  background: transparent;
}

.hero__photo {
  display: flex;
  justify-content: flex-end;
}

.hero__img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}

/* =============================================
   CARDS GRID
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.card {
  background: var(--white);
  border: 1px solid var(--sand-light);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  position: relative;
  transform-origin: center;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    opacity 220ms ease,
    filter 220ms ease;
}

.card--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
}

.card--wide .card__icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  margin-bottom: var(--space-4);
  transition: color 220ms ease, transform 220ms ease;
}

.card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   TEMAS
   ============================================= */
.temas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 var(--space-5);
  margin-top: var(--space-6);
}

.tema {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-3);
  border-top: 1px solid var(--sand-light);
  border-radius: var(--radius-sm);
  transition: opacity 220ms ease, background-color 220ms ease;
}

.tema__icon {
  color: var(--sand);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-1);
  transition: color 220ms ease, transform 220ms ease;
}

.tema__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.tema__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.tema--span2 {
  grid-column: span 2;
}

.temas-grid:hover .tema:not(:hover),
.temas-grid:focus-within .tema:not(:focus-within) {
  opacity: 0.72;
}

.tema:hover,
.tema:focus-within {
  background: var(--cream);
}

.tema:hover .tema__icon,
.tema:focus-within .tema__icon {
  color: var(--navy);
  transform: translateY(-2px);
}

/* =============================================
   NOSSO ESPAÇO
   ============================================= */
.espaco__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.espaco__figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 400px;
}

.espaco__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.espaco__map {
  margin-top: var(--space-5);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
}

.espaco__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.espaco__location {
  margin-top: var(--space-5);
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.01em;
}

/* =============================================
   BENEFITS
   ============================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-7) var(--space-8);
}

.benefit {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    opacity 220ms ease,
    filter 220ms ease;
}

.benefit__icon {
  width: 48px;
  height: 48px;
  background: var(--sand-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.benefit__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.benefit__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   ABORDAGEM
   ============================================= */
.abordagem__text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-5);
  text-wrap: pretty;
}

.abordagem__quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 500;
  color: var(--sand-light);
  margin-top: var(--space-8);
  line-height: 1.5;
  text-align: center;
  padding-top: var(--space-6);
  position: relative;
}

.abordagem__quote::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--sand);
  margin: 0 auto var(--space-5);
}

/* =============================================
   SOBRE
   ============================================= */
.sobre__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.sobre__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}

.sobre__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: var(--space-2);
}

.sobre__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: var(--space-2);
  line-height: 1.15;
  text-wrap: balance;
}

.sobre__role {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.sobre__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: var(--space-6);
  text-wrap: pretty;
}

.sobre__credentials {
  border-top: 1px solid var(--sand-light);
  padding-top: var(--space-5);
  margin-bottom: var(--space-5);
}

.sobre__credentials-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.sobre__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sobre__list li {
  font-size: 14px;
  color: var(--text);
  padding-left: var(--space-4);
  position: relative;
  line-height: 1.5;
}

.sobre__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
}

.sobre__crp {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* =============================================
   STEPS
   ============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--sand-light);
  border-radius: var(--radius-md);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    opacity 220ms ease,
    filter 220ms ease;
}

.step__number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--sand-light);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  transition: color 220ms ease, transform 220ms ease;
}

.step__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-2);
  line-height: 1.4;
}

.step__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   MODALIDADES
   ============================================= */
.modalidades__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: start;
  margin-top: var(--space-6);
}

.modalidades__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.modalidade-card {
  background: var(--white);
  border: 1px solid var(--sand-light);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition:
    box-shadow 220ms ease,
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    opacity 220ms ease,
    filter 220ms ease;
}

.modalidade-card__icon {
  color: var(--sand);
  margin-bottom: var(--space-3);
  transition: color 220ms ease, transform 220ms ease;
}

.modalidade-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.modalidade-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-3);
}

.modalidade-card__address {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.modalidades__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.modalidades__note {
  margin-top: var(--space-6);
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  margin-top: var(--space-6);
}

.faq__item {
  border-bottom: 1px solid var(--sand-light);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-5);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
  min-height: 44px;
}

.faq__question:hover {
  color: var(--navy);
}

.faq__chevron {
  flex-shrink: 0;
  color: var(--sand);
  transition: transform 200ms ease;
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 300ms ease-out;
}

.faq__answer.open {
  grid-template-rows: 1fr;
}

.faq__answer > div {
  overflow: hidden;
  min-height: 0;
}

.faq__answer > div > p {
  padding-bottom: var(--space-5);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.72;
}

/* =============================================
   CTA FINAL
   ============================================= */
.cta-final {
  text-align: center;
}

.cta-final__text {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-7);
  text-wrap: pretty;
}

.cta-final__phone {
  margin-top: var(--space-4);
  font-size: 14px;
  color: var(--sand-light);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.65);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-7);
  padding-block: var(--space-7);
}

.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: var(--space-2);
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.footer__logo-text {
  display: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2);
}

.footer__tagline {
  font-size: 13px;
  color: var(--sand-light);
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-size: 14px;
  text-align: right;
}

.footer__info a {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}

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

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: var(--space-5);
}

.footer__notice {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer__notice a {
  color: var(--sand-light);
  text-decoration: underline;
}

/* =============================================
   REACOES DOS QUADROS
   ============================================= */
.cards-grid:hover .card:not(:hover),
.cards-grid:focus-within .card:not(:focus-within),
.benefits-grid:hover .benefit:not(:hover),
.benefits-grid:focus-within .benefit:not(:focus-within),
.steps:hover .step:not(:hover),
.steps:focus-within .step:not(:focus-within),
.modalidades__cards:hover .modalidade-card:not(:hover),
.modalidades__cards:focus-within .modalidade-card:not(:focus-within) {
  opacity: 0.78;
  filter: saturate(0.88);
}

.card:hover,
.card:focus-within,
.benefit:hover,
.benefit:focus-within,
.step:hover,
.step:focus-within,
.modalidade-card:hover,
.modalidade-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(18,52,111,0.22);
  box-shadow: 0 14px 32px rgba(18,52,111,0.1);
}

.card:hover .card__icon,
.card:focus-within .card__icon,
.benefit:hover .benefit__icon,
.benefit:focus-within .benefit__icon,
.step:hover .step__number,
.step:focus-within .step__number,
.modalidade-card:hover .modalidade-card__icon,
.modalidade-card:focus-within .modalidade-card__icon {
  transform: translateY(-2px);
}

.card:hover .card__icon,
.card:focus-within .card__icon,
.modalidade-card:hover .modalidade-card__icon,
.modalidade-card:focus-within .modalidade-card__icon {
  color: var(--navy);
}

.benefit:hover,
.benefit:focus-within {
  background: var(--white);
  border-color: rgba(18,52,111,0.18);
}

.benefit:hover .benefit__icon,
.benefit:focus-within .benefit__icon {
  background: rgba(18,52,111,0.08);
}

.step:hover .step__number,
.step:focus-within .step__number {
  color: var(--navy);
}

.modalidade-card:hover,
.modalidade-card:focus-within {
  background: rgba(255,255,255,0.92);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 400ms ease, transform 400ms ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================
   FAB WHATSAPP
   ============================================= */
.whatsapp-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: opacity 300ms ease, transform 300ms ease, box-shadow 200ms ease;
}

.whatsapp-fab.fab--visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* =============================================
   RESPONSIVO - TABLET (<= 900px)
   ============================================= */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding-block: var(--space-8);
  }

  .hero__photo {
    order: -1;
    justify-content: center;
  }

  .hero__img {
    max-width: 320px;
    aspect-ratio: 3/4;
  }

  .hero__content {
    align-items: flex-start;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .temas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tema--span2 {
    grid-column: span 2;
  }

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

  .espaco__figure {
    height: 280px;
  }

  .espaco__map {
    height: 260px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .benefit {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-5);
  }

  .benefit__icon {
    flex-shrink: 0;
  }

  .sobre__inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .sobre__img {
    aspect-ratio: 4/3;
    object-position: center 15%;
    max-height: 380px;
  }

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

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

  .modalidades__photo {
    order: -1;
  }

  .modalidades__img {
    aspect-ratio: 16/9;
    object-position: center 60%;
  }
}

/* =============================================
   RESPONSIVO - MOBILE (<= 600px)
   ============================================= */
@media (max-width: 600px) {
  .navbar__links {
    display: none;
  }

  .section {
    padding-block: var(--space-8);
  }

  .section__subtitle {
    font-size: 16px;
    margin-bottom: var(--space-6);
  }

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

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

  .tema--span2 {
    grid-column: span 1;
  }

  .espaco__figure {
    height: 220px;
  }

  .espaco__map {
    height: 220px;
  }

  .hero__badges {
    gap: var(--space-2);
  }

  .badge {
    font-size: 12px;
    padding: 5px 10px;
  }

  .footer__inner {
    flex-direction: column;
    gap: var(--space-5);
  }

  .footer__info {
    text-align: left;
  }

  .btn--lg {
    padding: 14px 24px;
    font-size: 15px;
  }

  .navbar__inner .btn--sm {
    padding: 8px 14px;
    font-size: 13px;
  }

  .navbar__hamburger {
    display: flex;
  }

  .whatsapp-fab {
    display: flex;
  }

  .navbar__inner {
    grid-template-columns: 1fr auto;
  }

  .navbar__actions {
    display: none;
  }

  .navbar__links.open .navbar__whatsapp-link {
    display: flex;
    gap: var(--space-2);
    align-items: center;
    color: var(--navy);
    font-weight: 600;
    border-top: 1px solid var(--sand-light);
    margin-top: var(--space-2);
  }

  .benefit {
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-4);
  }

  .benefit__icon {
    width: 36px;
    height: 36px;
  }

  .benefit__title {
    font-size: 16px;
  }

  .navbar__links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 247, 244, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand-light);
    padding: var(--space-3) var(--space-5) var(--space-4);
    z-index: 99;
    box-shadow: 0 8px 24px rgba(18, 52, 111, 0.1);
  }

  .navbar__links.open .navbar__link {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: 16px;
    justify-content: flex-start;
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}





