/* ==========================================================================
   TECH WELLNESS — Design tokens e estilos globais
   Paleta: Roxo profundo + Lilás + Branco/Lavanda
   Tipografia: Poppins (títulos) + Inter (corpo)
   ========================================================================== */

:root {
  /* Cores */
  --color-bg:           #ffffff;
  --color-surface:      #faf7ff;
  --color-surface-2:    #f3e8ff;
  --color-text:         #1a1330;
  --color-text-muted:   #5b5475;
  --color-text-soft:    #8b8499;
  --color-purple:       #6b21a8;
  --color-purple-deep:  #4c1d95;
  --color-purple-bright:#9333ea;
  --color-purple-soft:  #c084fc;
  --color-lavender:     #ede9fe;
  --color-line:         #e9d5ff;
  --color-line-soft:    #f3e8ff;
  --color-dark:         #1a1330;

  /* Tipografia */
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  /* Sombras */
  --shadow-soft:   0 4px 20px rgba(76, 29, 149, .08);
  --shadow-medium: 0 8px 32px rgba(76, 29, 149, .12);
  --shadow-purple: 0 12px 40px rgba(147, 51, 234, .25);

  /* Animações */
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--color-purple);
  text-decoration: none;
  transition: color .25s var(--ease);
}
a:hover { color: var(--color-purple-bright); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
}

/* ============== Tipografia ============== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--color-text);
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
  -webkit-hyphens: manual;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1.05rem; font-weight: 600; }

.break-md { display: inline; }
@media (max-width: 880px) { .break-md { display: none; } }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-purple-bright);
  margin-bottom: 1rem;
  font-weight: 600;
  max-width: 100%;
}
@media (max-width: 520px) {
  .eyebrow { letter-spacing: .14em; font-size: .72rem; }
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.muted { color: var(--color-text-muted); }
.soft  { color: var(--color-text-soft); }
.purple { color: var(--color-purple); }

.gradient-text {
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============== Header ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-line-soft);
}
.site-header .nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text);
}
.brand-mark {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  flex: none;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name {
  display: flex; flex-direction: column;
  font-family: var(--font-display);
  line-height: 1.05;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.brand-name strong {
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
}
.brand-name small {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-purple-bright);
  margin-top: 2px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 1rem; }
  .brand-name small { font-size: .6rem; letter-spacing: .18em; }
}
@media (max-width: 360px) {
  .brand-name small { display: none; }
}

.nav-links {
  display: flex; gap: 28px;
  margin-left: auto;
  list-style: none; padding: 0; margin-block: 0;
}
.nav-links a {
  color: var(--color-text);
  font-size: .92rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--color-purple); }
.nav-actions { display: flex; gap: 10px; }

.menu-toggle {
  display: none;
  background: none; border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.menu-toggle svg { width: 26px; height: 26px; }

@media (max-width: 880px) {
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .site-header.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-line);
    padding: 8px 0;
    box-shadow: var(--shadow-soft);
  }
  .site-header.menu-open .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid var(--color-line-soft);
  }
  .site-header.menu-open .nav-actions {
    display: flex;
    padding: 14px 24px 18px;
    background: var(--color-bg);
    position: absolute;
    top: 100%; left: 0; right: 0;
    margin-top: 252px;
    box-shadow: var(--shadow-soft);
  }
}

/* ============== Botões ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  border: 2px solid var(--color-purple);
  background: transparent;
  color: var(--color-purple);
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
  max-width: 100%;
  text-align: center;
}
@media (max-width: 520px) {
  .btn {
    white-space: normal;
    padding: 12px 18px;
    font-size: .86rem;
    line-height: 1.25;
  }
}
.btn:hover {
  background: var(--color-purple);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-purple);
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-bright) 100%);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-purple-deep) 0%, var(--color-purple) 100%);
  color: white;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  border-color: transparent;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  color: white;
  border-color: transparent;
}
.btn-light {
  background: white;
  color: var(--color-purple);
  border-color: white;
}
.btn-light:hover {
  background: rgba(255, 255, 255, .85);
  color: var(--color-purple-deep);
  border-color: white;
}
.btn svg { width: 18px; height: 18px; }

/* ============== Seções ============== */
section {
  padding: clamp(56px, 9vw, 110px) 0;
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head .lead { margin-top: 12px; }

.divider-purple {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--color-purple), var(--color-purple-bright));
  border-radius: 999px;
  margin: 14px auto 22px;
}

/* ============== Hero ============== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(76, 29, 149, .92) 0%, rgba(147, 51, 234, .85) 100%),
    url('/assets/img/hero-bg.jpg') center/cover no-repeat;
  color: white;
  padding: 80px 0 64px;
}
@media (max-width: 880px) {
  .hero {
    background:
      linear-gradient(135deg, rgba(76, 29, 149, .94) 0%, rgba(147, 51, 234, .9) 100%),
      url('/assets/img/hero-bg-mobile.jpg') center/cover no-repeat;
    min-height: auto;
    padding: 56px 0 48px;
  }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(192, 132, 252, .25), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .12), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
}
.hero h1 {
  color: white;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #f0abfc 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero .eyebrow {
  color: #f0abfc;
  font-weight: 600;
}
.hero p.lead {
  color: rgba(255, 255, 255, .92);
  font-size: 1.15rem;
  max-width: 580px;
}
@media (max-width: 880px) { .hero p.lead { margin-inline: auto; } }
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 36px;
}
@media (max-width: 880px) { .hero-cta { justify-content: center; } }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-visual img {
  max-width: 100%;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0,0,0,.35);
  border: 4px solid rgba(255, 255, 255, .15);
}
@media (max-width: 880px) {
  .hero-visual img { max-width: 420px; margin: 0 auto; }
}

/* ============== Faixa de stats ============== */
.stats {
  background: var(--color-surface);
  border-block: 1px solid var(--color-line);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 700;
}
.stat .label {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ============== Sobre ============== */
.about {
  background: var(--color-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-text p { font-size: 1.04rem; color: var(--color-text-muted); margin-bottom: 1.1em; }
.about-text strong { color: var(--color-text); font-weight: 600; }
.about-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 720px) { .about-pillars { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; } }
.pillar {
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}
.pillar h4 {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-purple);
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 600;
}
.pillar p { font-size: .92rem; color: var(--color-text-muted); margin: 0; line-height: 1.5; }

/* ============== Categorias ============== */
.categories {
  background: var(--color-surface);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .categories-grid { grid-template-columns: 1fr; } }
.category-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-soft);
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-purple);
}
.category-card .card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.category-card .card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.category-card:hover .card-image img {
  transform: scale(1.06);
}
.category-card .card-body {
  padding: 22px 22px 26px;
}
.category-card h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  color: var(--color-purple);
}
.category-card p {
  font-size: .94rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============== Diferenciais (por que escolher) ============== */
.features {
  background: var(--color-bg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .features-grid { grid-template-columns: 1fr; } }
@media (min-width: 881px) and (max-width: 1100px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-card {
  padding: 32px 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: white;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-purple), var(--color-purple-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.feature-card:hover {
  border-color: var(--color-purple-soft);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-lavender), var(--color-surface-2));
  color: var(--color-purple);
  margin-bottom: 18px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--color-text);
}
.feature-card p { font-size: .94rem; color: var(--color-text-muted); margin: 0; line-height: 1.6; }

/* ============== Marketplaces ============== */
.marketplaces {
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-lavender) 100%);
}
.marketplaces-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
}
@media (max-width: 1024px) { .marketplaces-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .marketplaces-grid { grid-template-columns: repeat(2, 1fr); } }
.marketplace-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 130px;
  text-align: center;
  border: 1px solid var(--color-line-soft);
  box-shadow: var(--shadow-soft);
  transition: all .25s var(--ease);
}
.marketplace-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-purple-soft);
}
.marketplace-card img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  object-fit: contain;
}
.marketplace-card span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: .01em;
}

/* ============== Depoimentos ============== */
.testimonials {
  background: var(--color-bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial {
  padding: 32px 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  position: relative;
}
.testimonial .stars {
  color: #f59e0b;
  letter-spacing: 4px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.testimonial .quote {
  font-size: 1.02rem;
  color: var(--color-text);
  line-height: 1.55;
  margin-bottom: 22px;
}
.testimonial .who {
  display: flex; gap: 14px;
  border-top: 1px solid var(--color-line);
  padding-top: 16px;
  align-items: center;
}
.testimonial .who img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-purple-soft);
}
.testimonial .who-meta { display: flex; flex-direction: column; }
.testimonial .name {
  font-weight: 600;
  font-size: .98rem;
  color: var(--color-purple);
}
.testimonial .meta {
  font-size: .82rem;
  color: var(--color-text-soft);
  margin-top: 2px;
}

/* ============== Newsletter ============== */
.newsletter {
  background: linear-gradient(135deg, var(--color-purple-deep) 0%, var(--color-purple-bright) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(192, 132, 252, .2), transparent 50%);
  pointer-events: none;
}
.newsletter .container { position: relative; }
.newsletter .section-head { color: white; }
.newsletter .section-head h2 { color: white; }
.newsletter .section-head .lead { color: rgba(255, 255, 255, .9); }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 28px auto 0;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1 1 260px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .12);
  color: white;
  font: inherit;
  font-size: .96rem;
  outline: none;
  transition: all .25s var(--ease);
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, .65); }
.newsletter-form input:focus {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .55);
}

/* ============== Contato ============== */
.contact {
  background: var(--color-surface);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-card {
  padding: 24px 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: white;
  display: flex; gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}
.contact-card .icon {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-lavender), var(--color-surface-2));
  color: var(--color-purple);
  display: grid; place-items: center;
}
.contact-card .icon svg { width: 22px; height: 22px; }
.contact-card h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-card p, .contact-card a {
  font-size: 1rem;
  color: var(--color-text);
  margin: 0;
  line-height: 1.5;
}
.contact-card a:hover { color: var(--color-purple); }

.contact-cta {
  padding: 36px 32px;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--color-lavender), var(--color-surface));
  border: 1px solid var(--color-line);
  text-align: center;
}
.contact-cta h3 { color: var(--color-purple); }
.contact-cta .btn-row {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 24px;
}

/* === Anti-overflow defensivo === */
.contact-grid > *,
.footer-grid > *,
.features-grid > *,
.testimonials-grid > *,
.stats-grid > *,
.about-grid > *,
.about-pillars > *,
.hero-inner > *,
.categories-grid > *,
.marketplaces-grid > * { min-width: 0; }

img, iframe { max-width: 100%; }

/* ============== Footer ============== */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, .8);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand-name,
.site-footer .brand-name strong {
  color: white;
  -webkit-text-fill-color: white;
  background: none;
}
.site-footer .brand-name small { color: var(--color-purple-soft); }
.site-footer h5 {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-purple-soft);
  margin-bottom: 18px;
  font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a {
  color: rgba(255, 255, 255, .75);
  font-size: .94rem;
}
.site-footer a:hover { color: var(--color-purple-soft); }
.site-footer p { color: rgba(255, 255, 255, .65); }

.lang-switcher { display: flex; gap: 8px; flex-wrap: wrap; }
.lang-switcher a {
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: .82rem;
  letter-spacing: .04em;
}
.lang-switcher a.active,
.lang-switcher a:hover {
  border-color: var(--color-purple-soft);
  color: var(--color-purple-soft);
  background: rgba(192, 132, 252, .12);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.social-icons a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: grid; place-items: center;
  color: rgba(255, 255, 255, .8);
  transition: all .25s var(--ease);
}
.social-icons a:hover {
  border-color: var(--color-purple-soft);
  color: var(--color-purple-soft);
  background: rgba(192, 132, 252, .12);
  transform: translateY(-2px);
}
.social-icons svg { width: 18px; height: 18px; }
.copyright {
  text-align: center;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
}

/* ============== Botão flutuante WhatsApp ============== */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid; place-items: center;
  z-index: 100;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  transition: transform .25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); color: white; }
.whatsapp-float svg { width: 32px; height: 32px; }

/* ============== Animações de entrada ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
