/* =============================================
   VALESCA MIOTTI — PSICÓLOGA
   style.css
   ============================================= */

/* ─── Custom Properties ─────────────────────── */
:root {
  /* Palette */
  --bege-1:    #F5F0E8;
  --bege-2:    #EDE6D6;
  --roxo-1:    #AFA9EC;
  --roxo-2:    #7F77DD;
  --roxo-3:    #534AB7;
  --roxo-4:    #3C3489;
  --roxo-5:    #26215C;
  --branco:    #FFFFFF;
  --text-main: #2A2535;
  --text-body: #6B6472;
  --text-mute: #9E97A8;

  /* Icon accent fills */
  --rosa-bg:   #FDE8F0;
  --rosa-fg:   #D81B6A;
  --lilas-bg:  #EDE8FF;
  --lilas-fg:  #7F77DD;
  --verde-bg:  #E6F4ED;
  --verde-fg:  #2D9E6B;
  --ambar-bg:  #FEF3C7;
  --ambar-fg:  #D48A0B;

  /* Typography */
  --serif: Georgia, 'Times New Roman', serif;
  --sans:  'Inter', Arial, Helvetica, sans-serif;

  /* Spacing scale (4-pt base) */
  --s1:  4px;
  --s2:  8px;
  --s3:  12px;
  --s4:  16px;
  --s5:  20px;
  --s6:  24px;
  --s8:  32px;
  --s10: 40px;
  --s12: 48px;
  --s16: 64px;
  --s20: 80px;
  --s24: 96px;

  /* Radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(38,33,92,.07), 0 1px 2px rgba(38,33,92,.05);
  --shadow-md: 0 4px 12px rgba(38,33,92,.10), 0 2px 4px rgba(38,33,92,.06);
  --shadow-lg: 0 12px 32px rgba(38,33,92,.12), 0 4px 8px rgba(38,33,92,.07);

  /* Nav height (used to offset scroll targets) */
  --nav-h: 72px;

  /* Transitions */
  --t: .2s ease;
  --t-med: .3s ease;
}

/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--bege-1);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* ─── Layout ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s6);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--s8); }
}

/* ─── Typography helpers ─────────────────────── */
.eyebrow {
  display: block;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--roxo-2);
  margin-bottom: var(--s3);
}
.eyebrow--light { color: var(--roxo-1); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: normal;
  color: var(--roxo-4);
  line-height: 1.25;
  margin-bottom: var(--s4);
}
.section-title--light { color: var(--branco); }

.section-header {
  text-align: center;
  margin-bottom: var(--s12);
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s3) var(--s6);
  font-size: .9375rem;
  font-weight: 500;
  font-family: var(--sans);
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  transition: background var(--t-med), color var(--t-med),
              border-color var(--t-med), transform var(--t-med),
              box-shadow var(--t-med);
  white-space: nowrap;
}
.btn--primary {
  background: var(--roxo-3);
  color: var(--branco);
  border-color: var(--roxo-3);
}
.btn--primary:hover {
  background: var(--roxo-4);
  border-color: var(--roxo-4);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--roxo-3);
  border-color: var(--roxo-3);
}
.btn--outline:hover {
  background: var(--roxo-3);
  color: var(--branco);
  transform: translateY(-1px);
}
.btn--light {
  background: var(--branco);
  color: var(--roxo-4);
  border-color: var(--branco);
}
.btn--light:hover {
  background: transparent;
  color: var(--branco);
  transform: translateY(-1px);
}

/* ─── Tags ───────────────────────────────────── */
.tags { display: flex; flex-wrap: wrap; gap: var(--s3); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s4);
  background: var(--bege-2);
  color: var(--text-body);
  font-size: .875rem;
  font-weight: 500;
  border-radius: var(--r-pill);
  border: 1px solid rgba(83,74,183,.12);
}
.tag--light {
  background: rgba(255,255,255,.15);
  color: var(--branco);
  border-color: rgba(255,255,255,.3);
}

/* ─── Reveal animations ──────────────────────── */
.reveal,
.reveal--delay,
.reveal-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal--delay  { transition-delay: .15s; }
.reveal-fade:nth-child(1) { transition-delay: 0s;    }
.reveal-fade:nth-child(2) { transition-delay: .1s;   }
.reveal-fade:nth-child(3) { transition-delay: .18s;  }
.reveal-fade:nth-child(4) { transition-delay: .26s;  }
.reveal-fade:nth-child(5) { transition-delay: .34s;  }

.reveal.visible,
.reveal--delay.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAVIGATION ─────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  background: rgba(245,240,232,.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(83,74,183,.08);
  transition: box-shadow var(--t-med), background var(--t-med);
}
.nav.scrolled {
  background: rgba(245,240,232,.97);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--s4);
  height: var(--nav-h);
}

.nav__logo { display: flex; flex-direction: column; flex-shrink: 0; }
.nav__logo-name {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--roxo-4);
  line-height: 1.2;
}
.nav__logo-crp {
  font-size: .6875rem;
  color: var(--roxo-2);
  letter-spacing: .04em;
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--s1);
  margin-left: auto;
}
@media (min-width: 800px) {
  .nav__links { display: flex; }
}

.nav__link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-body);
  padding: var(--s2) var(--s3);
  border-radius: var(--r-pill);
  transition: color var(--t), background var(--t);
}
.nav__link:hover,
.nav__link.active {
  color: var(--roxo-3);
  background: rgba(83,74,183,.08);
}

.nav__cta {
  margin-left: var(--s4);
  display: none;
  padding: var(--s2) var(--s5);
  font-size: .875rem;
}
@media (min-width: 800px) {
  .nav__cta { display: inline-flex; }
}

.nav__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  color: var(--roxo-4);
  font-size: 1.25rem;
  margin-left: auto;
  transition: background var(--t);
}
.nav__hamburger:hover { background: rgba(83,74,183,.08); }
@media (min-width: 800px) {
  .nav__hamburger { display: none; }
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: var(--s2);
  padding: var(--s3) var(--s6) var(--s6);
  border-top: 1px solid rgba(83,74,183,.1);
}
.nav__mobile.open { display: flex; }
@media (min-width: 800px) {
  .nav__mobile { display: none !important; }
}
.nav__mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  padding: var(--s3) var(--s4);
  border-radius: var(--r-sm);
  transition: color var(--t), background var(--t);
}
.nav__mobile-link:hover {
  color: var(--roxo-3);
  background: rgba(83,74,183,.06);
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  padding: calc(var(--nav-h) + var(--s16)) 0 var(--s20);
  background: var(--bege-1);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 80% at 80% 20%, rgba(175,169,236,.18), transparent);
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s10);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__inner {
    flex-direction: row;
    gap: var(--s16);
    align-items: center;
  }
}

.hero__image-wrap {
  width: 100%;
  max-width: 360px;
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .hero__image-wrap {
    width: 44%;
    max-width: none;
  }
}

.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  background: var(--bege-2);
}

.hero__content { flex: 1; }

.hero__title {
  font-family: var(--serif);
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: normal;
  color: var(--roxo-5);
  line-height: 1.22;
  margin-bottom: var(--s5);
}
.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: var(--s8);
  max-width: 480px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
}

/* ─── SOBRE ──────────────────────────────────── */
.sobre {
  padding: var(--s20) 0;
  background: var(--branco);
}
.sobre__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s12);
  align-items: flex-start;
}
@media (min-width: 900px) {
  .sobre__inner {
    flex-direction: row;
    gap: var(--s16);
    align-items: flex-start;
  }
}

.sobre__media {
  flex-shrink: 0;
  width: 100%;
  max-width: 300px;
  align-self: center;
}
@media (min-width: 900px) {
  .sobre__media {
    width: 34%;
    max-width: none;
    align-self: flex-start;
  }
}
.sobre__img-wrap { position: relative; }

.sobre__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  background: var(--bege-2);
}

.sobre__badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--roxo-3);
  color: var(--branco);
  padding: var(--s3) var(--s4);
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.sobre__badge-label {
  display: block;
  font-size: .625rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .8;
  line-height: 1;
  margin-bottom: 3px;
}
.sobre__badge-num {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1;
}

.sobre__content { flex: 1; min-width: 0; }

.sobre__text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: var(--s4);
}
.sobre__text em { color: var(--roxo-3); font-style: italic; }

/* Timeline */
.timeline {
  margin-top: var(--s10);
  position: relative;
  padding-left: var(--s6);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--roxo-1), var(--roxo-3));
}

.timeline__item {
  position: relative;
  display: flex;
  gap: var(--s3);
  padding-bottom: var(--s5);
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__dot {
  position: absolute;
  left: -22px;
  top: 7px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bege-1);
  border: 2px solid var(--roxo-1);
  flex-shrink: 0;
}
.timeline__dot--active {
  background: var(--roxo-3);
  border-color: var(--roxo-3);
  box-shadow: 0 0 0 4px rgba(83,74,183,.18);
}

.timeline__body {
  display: flex;
  gap: var(--s3);
  align-items: baseline;
  flex-wrap: wrap;
}
.timeline__year {
  font-family: var(--serif);
  font-size: .9375rem;
  font-weight: bold;
  color: var(--roxo-3);
  flex-shrink: 0;
  min-width: 42px;
}
.timeline__year--active { color: var(--roxo-4); }
.timeline__text { font-size: .9375rem; color: var(--text-body); line-height: 1.5; }

/* ─── TRABALHO ───────────────────────────────── */
.trabalho {
  padding: var(--s20) 0;
  background: var(--bege-1);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
}
@media (min-width: 600px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  /* center last card when it's alone in the 3rd row */
  .cards-grid > .card:last-child:nth-child(3n + 2) {
    grid-column: 2;
  }
}

.card {
  background: var(--branco);
  border-radius: var(--r-md);
  padding: var(--s8);
  border: 1px solid rgba(83,74,183,.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--s5);
}
.card__icon--rosa  { background: var(--rosa-bg);  color: var(--rosa-fg);  }
.card__icon--lilas { background: var(--lilas-bg); color: var(--lilas-fg); }
.card__icon--verde { background: var(--verde-bg); color: var(--verde-fg); }
.card__icon--ambar { background: var(--ambar-bg); color: var(--ambar-fg); }
.card__icon--roxo  { background: rgba(83,74,183,.1); color: var(--roxo-3); }

.card__title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: normal;
  color: var(--roxo-4);
  margin-bottom: var(--s3);
  line-height: 1.35;
}
.card__text { font-size: .9375rem; color: var(--text-body); line-height: 1.75; }

/* ─── FOCO DO MOMENTO ────────────────────────── */
.foco {
  padding: var(--s20) 0;
  background: var(--roxo-5);
  position: relative;
  overflow: hidden;
}
.foco::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(175,169,236,.12), transparent 65%);
  pointer-events: none;
}

.foco__tabs {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--s10);
}
.foco__tab {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s3) var(--s6);
  font-size: .9375rem;
  font-weight: 500;
  font-family: var(--sans);
  color: rgba(255,255,255,.6);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--r-pill);
  transition: all var(--t-med);
  background: transparent;
  cursor: pointer;
}
.foco__tab:hover {
  color: var(--branco);
  border-color: rgba(255,255,255,.5);
}
.foco__tab--active {
  color: var(--roxo-5);
  background: var(--branco);
  border-color: var(--branco);
}

.foco__panels { max-width: 780px; margin: 0 auto; }

.foco__panel { display: none; }
.foco__panel--active {
  display: block;
  animation: panelIn .4s ease;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.foco__quote {
  font-family: var(--serif);
  font-size: clamp(1.125rem, 2.5vw, 1.4375rem);
  color: var(--branco);
  line-height: 1.65;
  border-left: 3px solid var(--roxo-1);
  padding-left: var(--s6);
  margin-bottom: var(--s6);
}
.foco__body {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.85;
  margin-bottom: var(--s8);
}

/* ─── O ESPAÇO ───────────────────────────────── */
.espaco {
  padding: var(--s20) 0;
  background: var(--branco);
}
.espaco__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s12);
  align-items: center;
}
@media (min-width: 900px) {
  .espaco__inner {
    flex-direction: row;
    gap: var(--s16);
    align-items: center;
  }
}

.espaco__media {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .espaco__media { width: 50%; }
}

.espaco__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  background: var(--bege-2);
}

.espaco__content { flex: 1; }
.espaco__text {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: var(--s6);
}
.espaco__text strong { color: var(--roxo-4); }

/* ─── ENTRE MÃES ─────────────────────────────── */
.entre-maes {
  padding: var(--s20) 0;
  background: linear-gradient(140deg, var(--roxo-4) 0%, var(--roxo-3) 100%);
  text-align: center;
}
.entre-maes__inner { max-width: 640px; margin: 0 auto; }

.entre-maes__title {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: normal;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: var(--s5);
}
.entre-maes__text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  margin-bottom: var(--s6);
}
.entre-maes__tags {
  display: flex;
  gap: var(--s3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s8);
}

/* ─── CONTATO ────────────────────────────────── */
.contato {
  padding: var(--s20) 0;
  background: var(--bege-1);
}
.contato__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
}
@media (min-width: 640px) {
  .contato__grid { grid-template-columns: repeat(3, 1fr); }
}

.contato__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--s8);
  background: var(--branco);
  border-radius: var(--r-md);
  border: 1px solid rgba(83,74,183,.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.contato__card:not(.contato__card--static):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(83,74,183,.2);
}

.contato__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--s5);
}
.contato__icon--wa     { background: #E6F9EE; color: #25D366; }
.contato__icon--ig     { background: linear-gradient(135deg, #fde8f0, #e8e0ff); color: #C13584; }
.contato__icon--online { background: var(--lilas-bg); color: var(--roxo-3); }

.contato__title {
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: normal;
  color: var(--roxo-4);
  margin-bottom: var(--s2);
}
.contato__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: var(--s3);
}
.contato__cta {
  font-size: .875rem;
  color: var(--roxo-2);
  margin-top: auto;
}

/* ─── ENDEREÇO ───────────────────────────────── */
.endereco {
  padding: var(--s20) 0;
  background: var(--bege-2);
}
.endereco__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s12);
  align-items: center;
}
@media (min-width: 900px) {
  .endereco__inner {
    flex-direction: row;
    gap: var(--s16);
    align-items: center;
  }
}

.endereco__media {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .endereco__media { width: 48%; }
}

.endereco__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  background: var(--bege-1);
}

.endereco__content { flex: 1; }
.endereco__info { margin-bottom: var(--s6); }

.endereco__name {
  font-family: var(--serif);
  font-size: 1.1875rem;
  font-weight: normal;
  color: var(--roxo-4);
  margin-bottom: var(--s5);
}

.endereco__address {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  font-style: normal;
}
.endereco__address > span {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}
.endereco__address i {
  color: var(--roxo-2);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.125rem;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--roxo-5);
  padding: var(--s12) 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s8);
}
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__brand { display: flex; flex-direction: column; gap: 2px; }
.footer__name {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  font-weight: normal;
}
.footer__crp  { font-size: .8125rem; color: rgba(255,255,255,.48); letter-spacing: .04em; }
.footer__copy { font-size: .75rem;   color: rgba(255,255,255,.32); margin-top: var(--s1); }

.footer__nav  { display: flex; flex-wrap: wrap; gap: var(--s1); }
.footer__link {
  font-size: .875rem;
  color: rgba(255,255,255,.52);
  padding: var(--s2) var(--s3);
  border-radius: var(--r-sm);
  transition: color var(--t);
}
.footer__link:hover { color: rgba(255,255,255,.9); }

.footer__social { display: flex; gap: var(--s3); }
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
  font-size: 1.125rem;
  transition: background var(--t), color var(--t);
}
.footer__social-link:hover {
  background: rgba(255,255,255,.2);
  color: var(--branco);
}

/* ─── FLOATING WHATSAPP ──────────────────────── */
.wa-float {
  position: fixed;
  bottom: var(--s6);
  right: var(--s6);
  z-index: 150;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  box-shadow: 0 4px 14px rgba(37,211,102,.42);
  transition: transform var(--t-med), box-shadow var(--t-med), background var(--t-med);
}
.wa-float:hover {
  background: #1fbe5c;
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37,211,102,.52);
}

/* ─── Responsive tweaks ──────────────────────── */
@media (max-width: 480px) {
  .hero { padding-top: calc(var(--nav-h) + var(--s10)); }
  .sobre__media { max-width: 240px; }
  .contato__grid { grid-template-columns: 1fr; }
}

@media (min-width: 600px) and (max-width: 959px) {
  /* In 2-col grid, last card alone on row → center it */
  .cards-grid > .card:last-child:nth-child(2n + 1) {
    grid-column: 1 / -1;
    max-width: 440px;
    justify-self: center;
  }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--delay, .reveal-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .foco__panel--active { animation: none; }
}
