/* ============ VARIÁVEIS ============ */
:root {
  --cor-primaria:        #5B7B6F;
  --cor-primaria-escura: #3D5A4F;
  --cor-secundaria:      #C8A96E;
  --cor-acento:          #D4956A;
  --cor-fundo:           #FAF7F2;
  --cor-fundo-alt:       #F0EBE3;
  --cor-texto:           #2D2D2D;
  --cor-texto-suave:     #6B6B6B;
  --cor-branco:          #FFFFFF;
  --cor-whatsapp:        #25D366;

  --font-display: 'Playfair Display', serif;
  --font-body:    'Lora', Georgia, serif;
  --font-ui:      'Montserrat', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);

  --radius: 12px;
  --radius-lg: 16px;
  --transition: 350ms ease;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--cor-texto);
  background: var(--cor-fundo);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--cor-primaria-escura); line-height: 1.2; }

/* ============ HELPERS ============ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.center { text-align: center; }
.light { color: var(--cor-branco) !important; }

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cor-secundaria);
  margin-bottom: 12px;
}
.section__eyebrow.center { display: block; }
.section__title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.section__subtitle { font-family: var(--font-ui); color: var(--cor-texto-suave); margin-bottom: 24px; }
.section__lead { color: var(--cor-texto-suave); max-width: 640px; margin: 0 auto 40px; }

/* ============ BOTÕES ============ */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}
.btn--primary { background: var(--cor-primaria); color: var(--cor-branco); }
.btn--primary:hover { background: var(--cor-primaria-escura); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--cor-branco); border: 2px solid var(--cor-branco); }
.btn--ghost:hover { background: var(--cor-branco); color: var(--cor-primaria-escura); }
.btn--outline { background: transparent; color: var(--cor-primaria); border: 2px solid var(--cor-primaria); }
.btn--outline:hover { background: var(--cor-primaria); color: var(--cor-branco); }
.btn--whatsapp { background: var(--cor-whatsapp); color: var(--cor-branco); }
.btn--whatsapp:hover { background: #1ebd5a; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 18px 44px; font-size: 17px; }

/* ============ BADGES / TAGS ============ */
.badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.badge--light { background: rgba(255,255,255,0.2); color: #fff; backdrop-filter: blur(8px); }
.badge--online { background: #E5F0EC; color: #3D5A4F; }
.badge--presencial { background: #FBE7DA; color: #A8552B; }
.badge--gold { background: var(--cor-secundaria); color: #fff; }
.badge-wrap { margin-bottom: 40px; }

.tag { display: inline-block; font-family: var(--font-ui); font-size: 13px; color: #fff; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); margin-right: 8px; }

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
}
.header.scrolled { background: rgba(250,247,242,0.92); backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__logo { display: flex; align-items: center; gap: 12px; line-height: 1.1; }
.header__logo-img { width: 46px; height: 46px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,0.85); padding: 4px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.header.scrolled .header__logo-img { background: #fff; }
.header__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.header__logo-name { font-family: var(--font-display); font-size: 22px; color: var(--cor-primaria-escura); font-weight: 700; }
.header__logo-sub { font-family: var(--font-ui); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cor-secundaria); }
.header:not(.scrolled) .header__logo-name { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.header:not(.scrolled) .header__logo-sub { color: #f5e9c9; }

.nav__list { display: flex; gap: 32px; }
.nav__list a { font-family: var(--font-ui); font-size: 14px; font-weight: 500; color: var(--cor-texto); transition: var(--transition); position: relative; }
.nav__list a:hover { color: var(--cor-primaria); }
.header:not(.scrolled) .nav__list a { color: #fff; }

.header__cta { padding: 10px 20px; font-size: 13px; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cor-texto); transition: var(--transition); }
.header:not(.scrolled) .hamburger span { background: #fff; }
.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); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #5B7B6F 0%, #3D5A4F 100%);
  /* TODO: substituir por imagem real: background-image: url('../assets/images/hero-bg.webp'); */
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(61,90,79,0.75), rgba(61,90,79,0.55));
}
.hero__content { position: relative; z-index: 2; color: #fff; padding: 120px 24px 80px; max-width: 820px; }
.hero__title {
  font-size: clamp(34px, 6vw, 64px);
  color: #fff;
  margin: 18px 0 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero__text {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 620px;
  margin-bottom: 36px;
  color: #f5f3ee;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 22px;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ============ SOBRE ============ */
.sobre { background: var(--cor-fundo-alt); }
.sobre__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
.sobre__foto {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  overflow: hidden;
  background: var(--cor-fundo-alt);
  box-shadow: var(--shadow-lg);
}
.sobre__foto-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sobre__foto-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #C8A96E 0%, #5B7B6F 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-ui); text-align: center;
  box-shadow: var(--shadow-lg);
}

/* FENATE */
.fenate {
  margin-top: 64px;
  background: #fff;
  border: 1px solid var(--cor-secundaria);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 36px;
  box-shadow: var(--shadow-sm);
}
.fenate__img { width: 140px; height: auto; object-fit: contain; flex-shrink: 0; border-radius: 8px; }
.fenate__texto .section__eyebrow { margin-bottom: 6px; }
.fenate__texto h3 { font-family: var(--font-display); font-size: 22px; color: var(--cor-primaria-escura); margin-bottom: 10px; }
.fenate__texto p { font-size: 15px; color: var(--cor-texto-suave); margin: 0; }
@media (max-width: 768px) {
  .fenate { flex-direction: column; text-align: center; padding: 28px 24px; }
}
.sobre__texto p { margin-bottom: 18px; color: var(--cor-texto-suave); }

.sobre__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.cred-card {
  background: var(--cor-branco);
  padding: 28px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cred-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cred-card__icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #E8F0E5;
  display: flex; align-items: center; justify-content: center;
  color: var(--cor-primaria);
}
.cred-card__icon svg { width: 26px; height: 26px; }
.cred-card h3 { font-size: 16px; margin-bottom: 8px; }
.cred-card p { font-size: 14px; color: var(--cor-texto-suave); }

/* ============ SERVIÇOS ============ */
.servicos__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.servico-card {
  background: var(--cor-branco);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.servico-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.servico-card__badges { display: flex; gap: 8px; margin-bottom: 16px; }
.servico-card .badge { margin-bottom: 16px; }
.servico-card__icon {
  width: 60px; height: 60px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #E8F0E5;
  display: flex; align-items: center; justify-content: center;
  color: var(--cor-primaria);
}
.servico-card__icon svg { width: 28px; height: 28px; }
.servico-card--destaque .servico-card__icon { background: #F5F0E0; color: #7A6B35; }
.servico-card h3 { font-size: 22px; margin-bottom: 12px; }
.servico-card p { color: var(--cor-texto-suave); margin-bottom: 24px; }
.servico-card--destaque { border: 2px solid var(--cor-secundaria); background: linear-gradient(180deg, #fff 0%, #fefaf0 100%); }
.servico-card--destaque .badge { margin-bottom: 0; }

/* ============ AVALIAÇÃO ============ */
.avaliacao { background: linear-gradient(135deg, #E8EFEB 0%, #F0EBE3 100%); }
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
  position: relative;
}
.timeline__step {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.timeline__num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--cor-secundaria);
  margin-bottom: 12px;
}
.timeline__step h3 { font-size: 20px; margin-bottom: 12px; }
.timeline__step p { color: var(--cor-texto-suave); font-size: 15px; }
.disclaimer {
  margin-top: 48px;
  padding: 20px;
  background: rgba(255,255,255,0.6);
  border-left: 4px solid var(--cor-acento);
  border-radius: 8px;
  font-size: 14px;
  color: var(--cor-texto-suave);
  font-style: italic;
  text-align: center;
}

/* ============ DEPOIMENTOS ============ */
.depoimentos { background: var(--cor-fundo); }
.carousel { position: relative; overflow: hidden; max-width: 760px; margin: 40px auto 0; }
.carousel__track { display: flex; transition: transform 600ms ease; }
.depoimento {
  min-width: 100%;
  padding: 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.depoimento__aspas { font-family: var(--font-display); font-size: 80px; color: var(--cor-secundaria); line-height: 0.6; }
.depoimento p { color: var(--cor-texto-suave); font-style: italic; margin: 16px 0 20px; }
.depoimento__autor { font-family: var(--font-ui); font-size: 14px; color: var(--cor-primaria); font-weight: 600; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel__dots button { width: 10px; height: 10px; border-radius: 50%; background: #d8d3c8; transition: var(--transition); }
.carousel__dots button.active { background: var(--cor-primaria); transform: scale(1.2); }

/* ============ PRODUTOS ============ */
.produtos { background: var(--cor-fundo-alt); }
.produtos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.produto-card {
  background: var(--cor-branco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding: 20px;
  text-align: center;
  display: block;
}
.produto-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.produto-card img {
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 16px;
  transition: transform var(--transition);
  background: #faf7f2;
  border-radius: 8px;
}
.produto-card:hover img { transform: scale(1.05); }
.produto-card h3 { font-size: 16px; margin-bottom: 6px; color: var(--cor-primaria-escura); }
.produto-card span { font-size: 13px; color: var(--cor-texto-suave); font-family: var(--font-ui); }

/* ============ CONTATO ============ */
.contato { background: var(--cor-primaria-escura); color: #fff; }
.contato__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.contato__item { text-align: center; }
.contato__item strong { display: block; font-family: var(--font-ui); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cor-secundaria); margin-bottom: 8px; }
.contato__item a, .contato__item span { color: #f5f3ee; }
.contato__item a:hover { color: var(--cor-secundaria); }

/* ============ FOOTER ============ */
.footer { background: #2D2D2D; color: #c5c5c5; padding: 64px 0 24px; font-size: 14px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.footer h4 { color: #fff; font-size: 14px; font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer ul li { margin-bottom: 8px; }
.footer a:hover { color: var(--cor-secundaria); }
.footer__disclaimer { font-size: 12px; font-style: italic; text-align: center; padding: 24px 0; border-top: 1px solid #444; color: #999; }
.footer__copy { text-align: center; font-size: 12px; color: #888; margin-top: 16px; }

/* ============ WHATSAPP FLUTUANTE ============ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--cor-whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  animation: pulse 2s infinite;
}
.wa-float__icon { font-size: 26px; }
.wa-float__tooltip {
  position: absolute;
  right: 70px;
  background: #2D2D2D;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.wa-float:hover .wa-float__tooltip { opacity: 1; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============ ÍCONES SVG ============ */
.icon { width: 18px; height: 18px; flex-shrink: 0; vertical-align: middle; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.tag { display: inline-flex; align-items: center; gap: 8px; }
.tag .icon { width: 16px; height: 16px; }
.hero__scroll { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; }
.hero__scroll svg { width: 20px; height: 20px; }
.wa-float__icon svg { width: 28px; height: 28px; }
.contato__item .icon { width: 20px; height: 20px; }

/* ============ AMBIENTE — MOVIMENTO DE FUNDO ============ */
.hero__ambient {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.ambient-shape {
  position: absolute;
  width: 480px; height: 480px;
  will-change: transform;
  filter: blur(8px);
}
.ambient-shape--1 { top: -120px; left: -140px; animation: drift1 22s ease-in-out infinite; }
.ambient-shape--2 { bottom: -180px; right: -160px; width: 560px; height: 560px; animation: drift2 28s ease-in-out infinite; }
.ambient-shape--3 { top: 30%; right: 18%; width: 320px; height: 320px; animation: drift3 18s ease-in-out infinite; }

@keyframes drift1 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50%     { transform: translate(60px,40px) rotate(8deg); }
}
@keyframes drift2 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50%     { transform: translate(-50px,-30px) rotate(-10deg); }
}
@keyframes drift3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(30px,-50px) scale(1.08); }
}

/* Camada ambiente global em seções claras */
.sobre, .produtos, .avaliacao { position: relative; overflow: hidden; }
.sobre::after, .produtos::after, .avaliacao::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,159,126,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: floatSlow 24s ease-in-out infinite;
}
.sobre::after   { top: -160px; right: -120px; }
.produtos::after{ bottom: -180px; left: -140px; background: radial-gradient(circle, rgba(197,184,130,0.1) 0%, transparent 70%); animation-duration: 30s; }
.avaliacao::after { top: 30%; left: -200px; }
.sobre .container, .produtos .container, .avaliacao .container { position: relative; z-index: 1; }

@keyframes floatSlow {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(40px,30px) scale(1.05); }
}

/* Respeita preferência de redução de movimento */
@media (prefers-reduced-motion: reduce) {
  .ambient-shape, .sobre::after, .produtos::after, .avaliacao::after,
  .wa-float, .hero__scroll { animation: none !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVO ============ */
@media (max-width: 1024px) {
  .sobre__grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre__cards { grid-template-columns: repeat(2, 1fr); }
  .produtos__grid { grid-template-columns: repeat(2, 1fr); }
  .contato__info { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html { -webkit-tap-highlight-color: rgba(91,123,111,0.15); }
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  /* Navegação mobile — drawer lateral com overlay */
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 82%; max-width: 320px;
    height: 100vh; height: 100dvh;
    background: var(--cor-fundo);
    padding: 100px 32px 40px;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    z-index: 999;
  }
  .nav.active { right: 0; }
  .nav__list { flex-direction: column; gap: 8px; }
  .nav__list li { border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav__list a {
    color: var(--cor-texto) !important;
    font-size: 17px;
    display: block;
    padding: 16px 4px;
    min-height: 48px;
  }
  .hamburger { display: flex; padding: 12px; min-width: 44px; min-height: 44px; align-items: center; }
  .header__cta { display: none; }

  /* Backdrop quando menu aberto */
  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: '';
    position: fixed; inset: 0;
    background: rgba(45,59,47,0.5);
    backdrop-filter: blur(2px);
    z-index: 998;
  }

  /* Hero mobile */
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero__content { padding: 110px 20px 80px; text-align: left; }
  .hero__title { font-size: clamp(28px, 8vw, 40px); line-height: 1.15; }
  .hero__text { font-size: 16px; }
  .hero__ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__ctas .btn { width: 100%; min-height: 52px; }
  .hero__tags { gap: 8px; }
  .hero__scroll { display: none; }

  /* Reduz peso das animações ambientes em mobile */
  .ambient-shape { filter: blur(20px); opacity: 0.7; }
  .ambient-shape--3 { display: none; }
  .sobre::after, .produtos::after, .avaliacao::after { width: 260px; height: 260px; }

  /* Layouts */
  .servicos__grid { grid-template-columns: 1fr; gap: 20px; }
  .servico-card { padding: 28px 24px; }
  .timeline { grid-template-columns: 1fr; gap: 24px; }
  .timeline__step { padding: 28px 22px; }
  .produtos__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .produto-card { padding: 14px; }
  .produto-card h3 { font-size: 14px; }
  .produto-card span { font-size: 12px; }
  .contato__info { grid-template-columns: 1fr; gap: 16px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }

  /* Sobre */
  .sobre__foto { max-width: 280px; margin: 0 auto; }
  .sobre__cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cred-card { padding: 22px 14px; }
  .cred-card h3 { font-size: 14px; }
  .cred-card p { font-size: 13px; }

  /* Touch targets ≥ 44px */
  .btn { min-height: 48px; padding: 14px 24px; }
  .btn--lg { min-height: 56px; }

  /* WhatsApp float não cobrir conteúdo */
  .wa-float { width: 56px; height: 56px; bottom: 18px; right: 18px; }
  body { padding-bottom: 0; }
  .footer { padding-bottom: 90px; }

  /* Header mais compacto */
  .header { padding: 12px 0; }
  .header__logo-name { font-size: 18px; }
  .header__logo-sub { font-size: 10px; }
  .header__logo-img { width: 40px; height: 40px; }

  /* FENATE */
  .fenate { margin-top: 40px; padding: 24px 20px; }
  .fenate__img { width: 110px; }

  /* Tipografia geral */
  .section__title { font-size: clamp(24px, 6vw, 32px); }
}

/* Telas muito pequenas */
@media (max-width: 380px) {
  .produtos__grid { grid-template-columns: 1fr; }
  .sobre__cards { grid-template-columns: 1fr; }
  .hero__title { font-size: 26px; }
}
