/* ============================================
   RAPHA BRITES — DESIGN SYSTEM
   Paleta: Plum (roxo profundo) + Coral + Cream
   Fontes: Instrument Serif (display) + Inter Tight (sans)
   ============================================ */

/* -------- RESET BÁSICO -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* -------- TOKENS / VARIÁVEIS -------- */
:root {
  --cream: #fcfbf8;
  --blush: #f5e6dc;
  --blush-soft: #faf0e8;
  --plum: #3a2451;
  --plum-deep: #2a1a3d;
  --coral: #e07856;
  --coral-soft: #f2b8a4;
  --ink: #2d2434;
  --muted: #6b6472;
  --border: #e6ddd4;
  --card: #ffffff;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --font-display: "Instrument Serif", ui-serif, Georgia, serif;
  --font-sans: "Inter Tight", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1216px;
  --shadow-sm: 0 1px 2px rgba(42, 26, 61, 0.06);
  --shadow: 0 10px 30px -12px rgba(42, 26, 61, 0.18);
  --shadow-lg: 0 25px 50px -20px rgba(42, 26, 61, 0.25);
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--plum);
}

em { font-style: italic; color: var(--coral); }

/* -------- LAYOUT -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

section { padding: 4rem 0; }
@media (min-width: 768px) { section { padding: 5rem 0; } }

/* Utilidades */
.text-center { text-align: center; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.muted { color: var(--muted); }

/* -------- KICKER (rótulo) -------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--coral);
}
.kicker::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--coral);
}

/* -------- BOTÕES -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--plum); color: var(--cream); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--plum-deep); }
.btn-coral { background: var(--coral); color: var(--cream); box-shadow: var(--shadow); }
.btn-coral:hover { background: #cf6a49; }
.btn-outline { border-color: rgba(58, 36, 81, 0.3); color: var(--plum); }
.btn-outline:hover { background: var(--plum); color: var(--cream); }
.btn-outline-cream { border-color: rgba(252, 251, 248, 0.3); color: var(--cream); }
.btn-outline-cream:hover { background: rgba(252, 251, 248, 0.1); }

/* -------- HEADER -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 251, 248, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 221, 212, 0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 0px solid rgba(58, 36, 81, 0.25);
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--plum);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--plum); }
.brand-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a { font-size: 0.9rem; color: rgba(45, 36, 52, 0.75); transition: color 0.2s; }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--plum); font-weight: 500; }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.btn-wa-desktop { display: none; }
.menu-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
}
@media (min-width: 768px) { .btn-wa-desktop { display: inline-flex; } }

/* Menu mobile */
.nav-mobile {
  display: none;
  border-top: 1px solid rgba(230, 221, 212, 0.6);
  background: var(--cream);
}
.nav-mobile.open { display: block; }
.nav-mobile-inner { display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem 0; }
.nav-mobile a {
  padding: 0.75rem 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  color: rgba(45, 36, 52, 0.8);
}
.nav-mobile a:hover, .nav-mobile a.active { background: var(--blush); color: var(--plum); font-weight: 500; }
.nav-mobile .btn { margin-top: 0.75rem; justify-content: center; }

/* -------- HERO -------- */
.hero {
  background: linear-gradient(to bottom, rgba(245, 230, 220, 0.6), var(--cream) 60%);
  padding: 4rem 0;
}
@media (min-width: 768px) { .hero { padding: 6rem 0; } }

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  margin-top: 1.5rem;
  color: var(--plum);
}
.hero p.lead {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  max-width: 32rem;
  color: var(--muted);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 32rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(230, 221, 212, 0.7);
}
.stat-value { font-family: var(--font-display); font-size: 1.35rem; margin-top: 0.5rem; }
.stat-label { font-size: 0.75rem; color: var(--muted); }

.hero-image-wrap { position: relative; }
.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -1.5rem;
  z-index: -1;
  border-radius: 40px;
  background: linear-gradient(to top right, rgba(224, 120, 86, 0.2), var(--blush), transparent);
  filter: blur(30px);
}
.hero-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(230, 221, 212, 0.6);
  box-shadow: var(--shadow-lg);
}
.hero-image img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }

/* -------- SEÇÃO DUAS ROTAS (CARDS DE PÚBLICOS) -------- */
.two-paths {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .two-paths { grid-template-columns: 1fr 1fr; } }

.path-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid transparent;
}
@media (min-width: 768px) { .path-card { padding: 2.5rem; } }
.path-card.plum { background: var(--plum); color: var(--cream); }
.path-card.blush { background: var(--blush); color: var(--plum-deep); border-color: rgba(230, 221, 212, 0.5); }
.path-card .watermark {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: 1;
  opacity: 0.06;
  pointer-events: none;
}
.path-icon {
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  border-radius: 16px;
  background: var(--coral);
  color: var(--cream);
  font-size: 1.5rem;
}
.path-eyebrow { font-family: var(--font-display); font-size: 1.75rem; margin-top: 1.5rem; color: inherit; }
.path-card.plum .path-eyebrow { color: var(--cream); }
.path-card h3 { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 500; margin-top: 0.5rem; color: inherit; opacity: 0.9; }
.path-card p { margin-top: 1.25rem; font-size: 0.9rem; opacity: 0.75; }
.path-body { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .path-body { grid-template-columns: 1.1fr 1fr; align-items: center; } }
.path-services { display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.9rem; }
.path-services li { display: flex; align-items: flex-start; gap: 0.5rem; }
.path-services li::before {
  content: "✓";
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.path-card .path-image { overflow: hidden; border-radius: var(--radius-lg); }
.path-card .path-image img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.path-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(252, 251, 248, 0.3);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}
.path-card.plum .path-cta:hover { background: rgba(252, 251, 248, 0.1); }
.path-card.blush .path-cta { border-color: rgba(42, 26, 61, 0.3); }
.path-card.blush .path-cta:hover { background: rgba(42, 26, 61, 0.05); }

/* -------- SEÇÃO "QUEM É RAPHA" -------- */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1.2fr; } }
.split h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 1.25rem;
}
.split .text-block { display: flex; flex-direction: column; gap: 1.25rem; color: var(--muted); }
.split .text-block p { line-height: 1.7; }

/* -------- DIFERENCIAIS -------- */
.diff-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3.5rem;
}
@media (min-width: 768px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .diff-grid { grid-template-columns: repeat(5, 1fr); } }
.diff-item { text-align: center; }
.diff-icon {
  margin: 0 auto;
  display: grid;
  place-items: center;
  width: 3.5rem; height: 3.5rem;
  border-radius: 18px;
  background: var(--blush);
  color: var(--coral);
  font-size: 1.5rem;
}
.diff-item h3 { font-size: 1.25rem; margin-top: 1.25rem; }
.diff-item p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); }

/* -------- LOGOS / CLIENTES -------- */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.25rem;
  margin-top: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) { .logos-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .logos-grid { grid-template-columns: repeat(8, 1fr); } }
.logo-item {
  display: grid;
  place-items: center;
  height: 4rem;
  border: 1px solid rgba(230, 221, 212, 0.6);
  border-radius: 8px;
  background: var(--card);
  padding: 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
}
/* -------- LOGOS / CLIENTES --------
   Variantes disponíveis (troque a classe no HTML):
   • .logos-grid      → 2 / 4 / 8 colunas (padrão original)
   • .logos-grid-6    → 6 colunas em 2 linhas (12 clientes)
   • .logos-carousel  → carrossel horizontal auto-rotativo
   ------------------------------------------- */
.logos-grid,
.logos-grid-6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.25rem;
  margin-top: 2.5rem;
  align-items: center;
}
/* Grade 6 colunas: 2 no mobile, 3 no tablet, 6 no desktop (2 linhas = 12) */
@media (min-width: 640px)  { .logos-grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .logos-grid-6 { grid-template-columns: repeat(6, 1fr); } }
/* Grade original 8 colunas */
@media (min-width: 768px)  { .logos-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .logos-grid { grid-template-columns: repeat(8, 1fr); } }

.logo-item {
  display: grid;
  place-items: center;
  height: 4rem;
  border: 1px solid rgba(230, 221, 212, 0.6);
  border-radius: 8px;
  background: var(--card);
  padding: 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--muted);
  text-align: center;
}

/* ---- Carrossel de logos (alternativa) ---- */
.logos-carousel {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
}
.logos-carousel::before,
.logos-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3rem;
  z-index: 2;
  pointer-events: none;
}
.logos-carousel::before { left: 0;  background: linear-gradient(90deg, var(--cream), transparent); }
.logos-carousel::after  { right: 0; background: linear-gradient(270deg, var(--cream), transparent); }
.logos-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: logos-scroll 32s linear infinite;
}
.logos-carousel:hover .logos-track { animation-play-state: paused; }
.logos-track .logo-item {
  flex: 0 0 auto;
  width: 11rem;
  height: 4.5rem;
}
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* metade da track duplicada */
}
@media (prefers-reduced-motion: reduce) {
  .logos-track { animation: none; flex-wrap: wrap; width: 100%; }
}


/* -------- DEPOIMENTOS -------- */
.testimonials {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: rgba(245, 230, 220, 0.7);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}
.testimonial .spark { color: var(--coral); font-size: 1.5rem; }
.testimonial blockquote {
  margin-top: 1rem;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(42, 26, 61, 0.85);
}
.testimonial .author { margin-top: 1.5rem; font-weight: 500; color: var(--plum-deep); }
.testimonial .role { font-size: 0.75rem; color: rgba(42, 26, 61, 0.6); }

/* -------- CTA BAND -------- */
.cta-band { background: var(--plum); color: var(--cream); }
.cta-band .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  padding-top: 3.5rem; padding-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .cta-band .container { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-band .cta-left { display: flex; align-items: flex-start; gap: 1.25rem; }
.cta-band .cta-icon {
  display: grid; place-items: center;
  width: 3.5rem; height: 3.5rem;
  border-radius: 18px;
  background: var(--coral);
  color: var(--cream);
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cta-band h2 { font-size: 1.75rem; color: var(--cream); }
@media (min-width: 768px) { .cta-band h2 { font-size: 2rem; } }
.cta-band p { margin-top: 0.5rem; font-size: 0.9rem; color: rgba(252, 251, 248, 0.75); max-width: 34rem; }

/* -------- SEÇÃO HERO INTERNA (páginas internas) -------- */
.page-hero {
  background: linear-gradient(to bottom, rgba(245, 230, 220, 0.5), var(--cream));
  padding: 4rem 0;
}
@media (min-width: 768px) { .page-hero { padding: 6rem 0; } }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-top: 1.5rem; }
.page-hero p.lead { font-size: 1.1rem; margin-top: 1.5rem; color: var(--muted); max-width: 34rem; }

.page-hero-dark { background: var(--plum); color: var(--cream); }
.page-hero-dark h1 { color: var(--cream); }
.page-hero-dark p.lead { color: rgba(252, 251, 248, 0.8); }
.page-hero-dark .kicker { color: var(--coral); }

/* -------- CARDS DE SERVIÇOS (grid genérico) -------- */
.services-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }

.service-card {
  background: var(--card);
  border: 1px solid rgba(230, 221, 212, 0.6);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.service-icon {
  display: grid; place-items: center;
  width: 3rem; height: 3rem;
  border-radius: 12px;
  background: var(--blush);
  color: var(--coral);
  font-size: 1.35rem;
}
.service-card h3 { font-size: 1.5rem; margin-top: 1.25rem; }
.service-card p { margin-top: 0.75rem; font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* -------- PROCESSO / TIMELINE HORIZONTAL -------- */
.process-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(5, 1fr); } }
.process-item {
  background: rgba(252, 251, 248, 0.05);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.page-hero-dark ~ section .process-item,
.plum-section .process-item { background: rgba(252, 251, 248, 0.05); }
.process-step { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--coral); }
.process-item .service-icon { margin-top: 1rem; background: var(--coral); color: var(--cream); }
.process-item h3 { font-size: 1.15rem; margin-top: 1rem; color: var(--cream); }
.process-item p { margin-top: 0.25rem; font-size: 0.85rem; color: rgba(252, 251, 248, 0.7); }

.plum-section { background: var(--plum); color: var(--cream); }
.plum-section h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); }

/* -------- CONTATO -------- */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }

.contact-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(230, 221, 212, 0.6);
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: rgba(58, 36, 81, 0.4); }
.contact-card.highlight { background: var(--coral); color: var(--cream); border-color: var(--coral); }
.contact-card.highlight:hover { background: #cf6a49; }
.contact-icon {
  display: grid; place-items: center;
  width: 2.75rem; height: 2.75rem;
  border-radius: 12px;
  background: var(--blush);
  color: var(--coral);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-card.highlight .contact-icon { background: rgba(252, 251, 248, 0.2); color: var(--cream); }
.contact-card .contact-title { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); }
.contact-card.highlight .contact-title { color: rgba(252, 251, 248, 0.8); }
.contact-card .contact-value { font-family: var(--font-display); font-size: 1.15rem; color: var(--plum); }
.contact-card.highlight .contact-value { color: var(--cream); }

.contact-form {
  background: var(--card);
  border: 1px solid rgba(230, 221, 212, 0.6);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.contact-form h2 { font-size: 1.75rem; }
.contact-form .form-lead { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted); }
.field { display: block; margin-top: 1.5rem; }
.field-label { display: block; margin-bottom: 0.5rem; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); }
.field input, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus { border-color: var(--plum); }
.topic-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.topic-choice {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--cream);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.topic-choice.active { background: var(--plum); color: var(--cream); border-color: var(--plum); }
.topic-choice:hover:not(.active) { border-color: rgba(58, 36, 81, 0.5); }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 1.5rem; }

/* -------- FOOTER -------- */
.site-footer { background: var(--plum-deep); color: rgba(252, 251, 248, 0.9); }
.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .brand-mark { border-color: rgba(252, 251, 248, 0.25); color: var(--cream); }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-tag { color: rgba(252, 251, 248, 0.6); }
.footer-brand p { margin-top: 1.5rem; max-width: 22rem; font-size: 0.9rem; color: rgba(252, 251, 248, 0.7); }
.socials { margin-top: 1.5rem; display: flex; gap: 0.75rem; }
.socials a {
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(252, 251, 248, 0.2);
  transition: border-color 0.2s, color 0.2s;
}
.socials a:hover { border-color: var(--coral); color: var(--coral); }
.footer-col h3 { font-size: 1.15rem; color: var(--cream); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a, .footer-col li { font-size: 0.9rem; color: rgba(252, 251, 248, 0.75); }
.footer-col a:hover { color: var(--coral); }
.footer-col li.contact-line { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-col .ico { color: var(--coral); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(252, 251, 248, 0.1);
}
.footer-bottom .container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(252, 251, 248, 0.6);
}
@media (min-width: 768px) {
  .footer-bottom .container { flex-direction: row; justify-content: space-between; }
}

/* -------- ANIMAÇÕES SUAVES (fade-in ao rolar) -------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}
