/* =============================================
   AURA ZEN ESTÉTICA — Estilos Principais
   Paleta: #C08A5B (dourado), #F7EFE8 (nude claro), #3E2C26 (escuro)
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #C08A5B;
  --primary-dark: #a8724a;
  --secondary: #F7EFE8;
  --accent: #3E2C26;
  --accent-light: #5a3f37;
  --white: #ffffff;
  --gray-light: #f0e8e0;
  --gray-mid: #d4c4b8;
  --text-dark: #2a1f1a;
  --text-mid: #5a4a42;
  --text-light: #8a7a72;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 2px 12px rgba(62,44,38,0.08);
  --shadow-md: 0 6px 30px rgba(62,44,38,0.12);
  --shadow-lg: 0 12px 50px rgba(62,44,38,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--accent);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-mid); }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
}

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

section {
  padding: 5rem 0;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}

.divider.center { margin: 1rem auto 1.5rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192,138,91,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(192,138,91,0.45);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.btn-white:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  color: var(--accent);
}

/* =============================================
   HEADER / NAVEGAÇÃO
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  transition: color var(--transition);
}

.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
}

.header.hero-mode .logo-name { color: var(--white); }
.header.hero-mode .logo-tagline { color: rgba(255,255,255,0.8); }

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(192,138,91,0.08);
}

.header.hero-mode .nav-link {
  color: rgba(255,255,255,0.9);
}

.header.hero-mode .nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.header-cta {
  flex-shrink: 0;
}

/* Hambúrguer */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.4rem;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all var(--transition);
}

.header.hero-mode .hamburger span { background: var(--white); }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(62,44,38,0.97);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
}

.mobile-nav .nav-link {
  font-size: 1.4rem;
  color: var(--white);
  font-family: var(--font-serif);
}

.mobile-nav .nav-link:hover { color: var(--primary); background: none; }

.mobile-nav .btn { margin-top: 1rem; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(62,44,38,0.72) 0%,
    rgba(62,44,38,0.45) 50%,
    rgba(192,138,91,0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: italic;
  color: #e8c99a;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.6);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   SOBRE
   ============================================= */
.sobre {
  background: var(--white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.sobre-image-wrap {
  position: relative;
}

.sobre-image-main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}

.sobre-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.sobre-badge-float .num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.sobre-badge-float .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.sobre-content .section-subtitle {
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.sobre-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.sobre-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.sobre-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.sobre-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
}

.sobre-feature-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 0.15rem;
}

.sobre-feature-text span {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* =============================================
   SERVIÇOS
   ============================================= */
.servicos {
  background: var(--secondary);
}

.servicos-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.servico-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.servico-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.servico-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.servico-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.servico-card-body p {
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.servico-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
  transition: gap var(--transition);
}

.servico-link:hover { gap: 0.7rem; color: var(--primary-dark); }

.servico-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

/* =============================================
   DIFERENCIAIS
   ============================================= */
.diferenciais {
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.diferenciais::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192,138,91,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.diferenciais-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.diferenciais-header .section-label { color: var(--primary); }
.diferenciais-header h2 { color: var(--white); }
.diferenciais-header .section-subtitle { color: rgba(255,255,255,0.7); margin: 0 auto; }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.diferencial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.diferencial-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(192,138,91,0.3);
}

.diferencial-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.diferencial-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
  fill: none;
}

.diferencial-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.diferencial-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

/* =============================================
   DEPOIMENTOS
   ============================================= */
.depoimentos {
  background: var(--white);
}

.depoimentos-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.depoimento-card {
  background: var(--secondary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--transition);
}

.depoimento-card:hover { box-shadow: var(--shadow-md); }

.depoimento-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.depoimento-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  stroke: none;
}

.depoimento-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.depoimento-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.depoimento-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.depoimento-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
}

.depoimento-author-role {
  font-size: 0.78rem;
  color: var(--text-light);
}

.depoimento-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.15;
  pointer-events: none;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* =============================================
   CONTATO
   ============================================= */
.contato {
  background: var(--secondary);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contato-info h2 {
  margin-bottom: 1rem;
}

.contato-info .section-subtitle {
  max-width: 100%;
  margin-bottom: 2rem;
}

.contato-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contato-item-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contato-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
}

.contato-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.contato-item-value {
  font-size: 0.95rem;
  color: var(--text-mid);
}

.contato-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  color: var(--accent);
}

.social-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.contato-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.contato-card h3 {
  margin-bottom: 0.75rem;
}

.contato-card p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.contato-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
}

.contato-horario {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contato-horario svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  fill: none;
  flex-shrink: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--accent);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.6); }

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--primary); }

/* =============================================
   WHATSAPP FLUTUANTE
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 0.85rem 1.4rem 0.85rem 1rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
  animation: pulse-wa 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
  color: var(--white);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
  flex-shrink: 0;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.65); }
}

/* =============================================
   PÁGINAS INTERNAS (Política / Termos)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.7); margin-top: 0.75rem; }

.page-content {
  padding: 4rem 0 5rem;
  background: var(--white);
}

.page-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--accent);
}

.page-content h2:first-child { margin-top: 0; }

.page-content p, .page-content li {
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.page-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-content strong { color: var(--accent); }

/* =============================================
   ANIMAÇÕES DE ENTRADA
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-image-wrap { max-width: 500px; margin: 0 auto; }
  .contato-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-stats { gap: 1.5rem; }
  .hero-stat-number { font-size: 1.6rem; }

  .servicos-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr 1fr; }
  .depoimentos-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.9rem; border-radius: 50%; }

  .sobre-badge-float { right: 0; bottom: -1rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
