/* ==========================================================================
   Luz do Laser Salvador — v2
   Paleta derivada da identidade original:
   sálvia #799587 · sálvia-clara #A0B8AB · verde #33675b · luz dourada (logo)
   ========================================================================== */

:root {
  --verde-900: #1b352e;
  --verde-800: #22443c;
  --verde-700: #33675b;
  --salvia: #799587;
  --salvia-700: #56766a;
  --salvia-300: #a0b8ab;
  --salvia-100: #dde8e1;
  --menta: #eff5f1;
  --marfim: #fbfaf8;
  --branco: #ffffff;
  --luz: #f2c14e;
  --luz-600: #dfa832;
  --luz-100: #fdf3da;
  --ink: #26332e;
  --ink-soft: #5c6b64;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(27, 53, 46, 0.07);
  --shadow-md: 0 14px 34px rgba(27, 53, 46, 0.12);
  --container: 1140px;
  --header-h: 74px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--marfim);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--salvia-700); }

:focus-visible {
  outline: 3px solid var(--luz);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ---------- Tipografia ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--verde-800);
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--salvia-700);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--luz);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.75rem, 2.4vw + 1rem, 2.5rem);
  margin-bottom: 14px;
}

.section-intro {
  color: var(--ink-soft);
  font-size: 1.06rem;
  max-width: 620px;
}

.section-head { margin-bottom: 44px; }
.section-head.center { text-align: center; }
.section-head.center .section-intro { margin-inline: auto; }
.section-head.center .eyebrow::before { display: none; }
.section-head.center .eyebrow::after { display: none; }

em { font-style: italic; }

/* ---------- Seções ---------- */

.section { padding-block: clamp(64px, 9vw, 108px); }
.section--menta { background: var(--menta); }
.section--dark {
  background: linear-gradient(160deg, var(--verde-800), var(--verde-900));
  color: var(--salvia-100);
}
.section--dark .section-title { color: var(--marfim); }
.section--dark .eyebrow { color: var(--salvia-300); }

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn svg { flex: none; }

.btn-gold {
  background: var(--luz);
  color: var(--verde-900);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.35);
}

.btn-gold:hover {
  background: var(--luz-600);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(242, 193, 78, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--marfim);
  border: 1.5px solid rgba(251, 250, 248, 0.45);
}

.btn-ghost:hover {
  border-color: var(--luz);
  color: var(--luz);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--verde-700);
  border: 1.5px solid var(--salvia);
}

.btn-outline:hover {
  background: var(--verde-700);
  border-color: var(--verde-700);
  color: var(--branco);
  transform: translateY(-2px);
}

.btn-sm { padding: 11px 20px; font-size: 0.92rem; }

/* ---------- Header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(27, 53, 46, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(160, 184, 171, 0.18);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--marfim);
  line-height: 1.1;
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--salvia-300);
  margin-top: 3px;
}

.nav { display: none; }

.header .btn-gold { display: none; }

.menu-btn {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--marfim);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--verde-900);
  padding: 18px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform 0.35s ease;
  border-bottom: 1px solid rgba(160, 184, 171, 0.2);
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
  color: var(--salvia-100);
  text-decoration: none;
  font-weight: 500;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(160, 184, 171, 0.14);
}

.mobile-menu a:last-of-type { border-bottom: none; }

.mobile-menu .btn { margin-top: 14px; }

@media (min-width: 960px) {
  .nav { display: flex; gap: 26px; }

  .nav a {
    color: var(--salvia-100);
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    transition: color 0.25s ease;
  }

  .nav a:hover { color: var(--luz); }

  .header .btn-gold { display: inline-flex; padding: 11px 20px; font-size: 0.92rem; }
  .menu-btn, .mobile-menu { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 82% 30%, rgba(242, 193, 78, 0.16), transparent 62%),
    linear-gradient(160deg, var(--verde-800) 0%, var(--verde-900) 78%);
  padding: calc(var(--header-h) + 52px) 0 72px;
  color: var(--salvia-100);
}

.hero-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.hero .eyebrow { color: var(--salvia-300); }
.hero .eyebrow::before { background: var(--luz); }

.hero h1 {
  font-size: clamp(2.15rem, 4.6vw + 0.6rem, 3.5rem);
  color: var(--marfim);
  margin-bottom: 20px;
}

.hero h1 em { color: var(--luz); font-weight: 500; }

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--salvia-100);
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

/* A assinatura: a auréola de luz da marca envolvendo a foto */
.hero-figure {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
  width: 100%;
}

.hero-figure::before {
  content: "";
  position: absolute;
  inset: -12%;
  background: radial-gradient(closest-side, rgba(242, 193, 78, 0.5), rgba(242, 193, 78, 0.12) 58%, transparent 72%);
  filter: blur(34px);
  animation: respirar 7s ease-in-out infinite alternate;
}

@keyframes respirar {
  from { opacity: 0.55; transform: scale(0.97); }
  to   { opacity: 0.9;  transform: scale(1.05); }
}

.hero-figure img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1100 / 1427;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

@media (min-width: 900px) {
  .hero { padding: calc(var(--header-h) + 84px) 0 100px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
}

/* ---------- Quem Somos ---------- */

.about-stack {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.about-stack .section-head { margin-bottom: 36px; }
.about-stack .section-head .eyebrow { justify-content: center; }
.about-stack .section-head .eyebrow::before { display: none; }
.about-stack .section-intro { margin-inline: auto; }

.about-photo {
  position: relative;
  max-width: 360px;
  margin: 0 auto 40px;
  width: 100%;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--luz);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 1333;
  object-fit: cover;
}

.about-pillars {
  display: grid;
  gap: 18px;
  text-align: left;
}

.about-pillar {
  background: var(--menta);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.about-pillar h3 {
  font-size: 1.05rem;
  color: var(--verde-700);
  margin-bottom: 6px;
}

.about-pillar p {
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.about-stack .section-cta { margin-top: 36px; }

@media (min-width: 640px) {
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .about-stack {
    max-width: 980px;
    text-align: left;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
  }

  .about-stack .section-head { margin-bottom: 32px; }
  .about-stack .section-head .eyebrow { justify-content: flex-start; }
  .about-stack .section-head .eyebrow::before { display: inline-block; }
  .about-stack .section-intro { margin-inline: 0; }

  .about-photo {
    margin: 0;
    max-width: 360px;
    justify-self: center;
  }

  .about-stack .section-cta {
    justify-content: flex-start;
    text-align: left;
  }
}

/* ---------- Cards genéricos ---------- */

.card {
  background: var(--branco);
  border: 1px solid var(--salvia-100);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 { font-size: 1.28rem; margin-bottom: 10px; }

.icon-disc {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--menta);
  color: var(--verde-700);
  margin-bottom: 18px;
}

/* ---------- Tratamentos ---------- */

.treat-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  max-width: 720px;
  margin-inline: auto;
}

.treat-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px 22px;
}

.treat-card h3 { font-size: 1.08rem; margin-bottom: 6px; }

.treat-card .icon-disc {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.treat-card .icon-disc svg { width: 20px; height: 20px; }

@media (min-width: 640px) {
  .treat-grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 900px;
  }
  .treat-card:nth-child(1) { grid-column: 1 / 3; }
  .treat-card:nth-child(2) { grid-column: 3 / 5; }
  .treat-card:nth-child(3) { grid-column: 5 / 7; }
  .treat-card:nth-child(4) { grid-column: 2 / 4; }
  .treat-card:nth-child(5) { grid-column: 4 / 6; }
}

@media (min-width: 1080px) {
  .treat-grid {
    grid-template-columns: repeat(5, 1fr);
    max-width: none;
  }
  .treat-card:nth-child(1),
  .treat-card:nth-child(2),
  .treat-card:nth-child(3),
  .treat-card:nth-child(4),
  .treat-card:nth-child(5) { grid-column: auto; }
}

.treat-card ul {
  list-style: none;
  margin: 2px 0 4px;
  flex-grow: 1;
}

.treat-card li {
  padding: 5px 0;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--salvia-100);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}

.treat-card li:last-child { border-bottom: none; }

.treat-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--luz);
  flex: none;
}

.treat-card--a,
.treat-card--b { background: var(--branco); border-color: var(--salvia-300); }

.treat-card--a .icon-disc,
.treat-card--b .icon-disc { background: var(--menta); color: var(--verde-800); }

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ---------- Benefícios ---------- */

.benefit-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  max-width: 880px;
  margin-inline: auto;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 24px;
}

.benefit-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
  width: 100%;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(242, 193, 78, 0.25);
}

@media (min-width: 720px) {
  .benefit-card { flex-direction: row; align-items: stretch; gap: 24px; }
  .benefit-head { align-items: center; }
  .benefit-head {
    width: 260px;
    padding-bottom: 0;
    padding-right: 24px;
    border-bottom: none;
    border-right: 1px solid rgba(242, 193, 78, 0.25);
  }
}

.benefit-card .icon-disc {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  flex: none;
}

.benefit-card .icon-disc svg { width: 22px; height: 22px; }

.benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0;
  line-height: 1.25;
}

.benefit-card p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; }

.benefit-card { background: var(--verde-800); border-color: var(--verde-800); }
.benefit-card h3 { color: var(--marfim); }
.benefit-card p { color: var(--salvia-100); }
.benefit-card .icon-disc { background: rgba(242, 193, 78, 0.16); color: var(--luz); }

/* ---------- Antes e Depois ---------- */

.cases-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1020px;
  margin-inline: auto;
}

.case-card {
  background: var(--branco);
  border: 1px solid var(--salvia-100);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.case-pair { display: flex; }

.case-pair figure {
  width: 50%;
  margin: 0;
}

.case-pair img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}

.case-pair figcaption {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 4px;
}

.case-pair .antes figcaption { background: var(--menta); color: var(--ink-soft); }
.case-pair .depois figcaption { background: var(--luz); color: var(--verde-900); }

.case-card > p {
  padding: 20px 22px 24px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.cases-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- Equipe ---------- */

.team-people {
  display: grid;
  gap: 28px;
  max-width: 760px;
  margin-inline: auto;
}

.team-member { text-align: center; }

.team-photo {
  position: relative;
  max-width: 260px;
  margin: 0 auto 22px;
  width: 100%;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid var(--luz);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.team-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.team-member h3 { font-size: 1.35rem; }

.team-member .role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--salvia-700);
  margin: 6px 0 10px;
}

.team-member p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 420px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .team-people { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Depoimentos ---------- */

.depoimentos-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  margin-bottom: 0;
}

.depoimentos-title .eyebrow { justify-content: center; }
.depoimentos-title .eyebrow::before { display: none; }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  background: rgba(251, 250, 248, 0.06);
  border: 1px solid rgba(242, 193, 78, 0.35);
  border-radius: 999px;
  flex: none;
}

.rating-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.rating-badge-text strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--marfim);
}

.rating-stars { color: var(--luz); font-size: 0.85rem; letter-spacing: 1px; }

.rating-badge-text span {
  font-size: 0.82rem;
  color: var(--salvia-300);
}

@media (min-width: 860px) {
  .depoimentos-head { flex-direction: row; justify-content: center; flex-wrap: nowrap; text-align: left; }
  .depoimentos-title .eyebrow { justify-content: flex-start; }
  .depoimentos-title .eyebrow::before { display: block; }
  .rating-badge { flex-shrink: 0; }
}

.mosaic {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1100px;
  margin: 40px auto 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.mosaic-row {
  display: flex;
  gap: 14px;
  width: max-content;
  animation-name: mosaic-rtl;
  animation-duration: var(--dur, 32s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.mosaic:hover .mosaic-row { animation-play-state: paused; }

.mosaic-row img {
  height: 130px;
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(242, 193, 78, 0.2);
  flex: none;
}

@keyframes mosaic-rtl {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (min-width: 700px) {
  .mosaic-row img { height: 160px; }
}

/* ---------- FAQ ---------- */

.faq-list { max-width: 760px; margin-inline: auto; }

.faq-item {
  background: var(--branco);
  border: 1px solid var(--salvia-100);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--verde-800);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--luz-600);
  transition: transform 0.3s ease;
  flex: none;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

/* ---------- Contato / CTA final ---------- */

.contact-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.contact-cta h2 {
  font-size: clamp(1.8rem, 3vw + 0.8rem, 2.6rem);
  color: var(--marfim);
  margin-bottom: 16px;
}

.contact-cta h2 em { color: var(--luz); font-weight: 500; }

.contact-cta p { color: var(--salvia-100); margin-bottom: 28px; max-width: 480px; }

.contact-cards { display: grid; gap: 14px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(251, 250, 248, 0.06);
  border: 1px solid rgba(160, 184, 171, 0.25);
  border-radius: 16px;
  padding: 18px 20px;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

a.contact-card:hover { border-color: var(--luz); background: rgba(242, 193, 78, 0.08); }

.contact-card .icon-disc {
  margin: 0;
  width: 46px;
  height: 46px;
  background: rgba(242, 193, 78, 0.15);
  color: var(--luz);
  flex: none;
}

.contact-card strong {
  display: block;
  color: var(--marfim);
  font-size: 0.98rem;
}

.contact-card span { color: var(--salvia-300); font-size: 0.88rem; }

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; }
}

/* ---------- Footer ---------- */

.footer {
  background: var(--verde-900);
  color: var(--salvia-300);
  padding: 44px 0 110px;
  border-top: 1px solid rgba(160, 184, 171, 0.16);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer .brand-name { font-size: 1.05rem; }

.footer p { font-size: 0.88rem; max-width: 460px; }

.footer .social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--salvia-100);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}

.footer .social:hover { color: var(--luz); }

.footer .copy { font-size: 0.8rem; opacity: 0.75; }

@media (min-width: 900px) {
  .footer { padding-bottom: 44px; }
}

/* ---------- CTAs fixos (mobile bar + botão flutuante) ---------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(27, 53, 46, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(242, 193, 78, 0.3);
}

.sticky-cta .btn { width: 100%; }

.float-wa {
  display: none;
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 1100;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--luz);
  color: var(--verde-900);
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(242, 193, 78, 0.5);
  transition: transform 0.25s ease;
}

.float-wa:hover { transform: scale(1.08); }

@media (min-width: 900px) {
  .sticky-cta { display: none; }
  .float-wa { display: inline-flex; }
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in { opacity: 1; transform: none; }

/* ---------- Acessibilidade: movimento reduzido ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-figure::before { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .case-card { transition: none; }
  .mosaic-row { animation: none; }
  .mosaic { overflow: auto; -webkit-mask-image: none; mask-image: none; }
}
