/* ═══════════════════════════════════════════════════════════════
   Floricultura Semente — style.css
   Tema: Botanical Garden  |  Santo Ângelo, RS
   Fontes: Cormorant Garamond (display) + Nunito (corpo)
═══════════════════════════════════════════════════════════════ */

/* ── VARIÁVEIS ──────────────────────────────────────────────── */
:root {
  --sage-bg:      #EDF4EA;          /* fundo principal — ivory com toque de jardim   */
  --sage-dark:    #DDE8D8;          /* sage escuro para hover/borda                  */
  --surface:      #FFFFFF;          /* superfícies brancas (cards, seções alternadas) */
  --surface-alt:  #F5F9F3;          /* branco alternado levemente esverdeado          */
  --forest:       #1A3D1F;          /* verde floresta — texto principal               */
  --forest-mid:   #2D6038;          /* verde médio para acentos                       */
  --leaf:         #4B8A58;          /* verde folha — labels e ícones                  */
  --leaf-light:   #7DB88A;          /* verde claro                                    */
  --rose:         #BF4F7A;          /* rosa pétala — CTA principal                    */
  --rose-light:   #D47A9A;          /* rosa claro para hover                          */
  --text:         #1A3D1F;
  --text-muted:   #5C7060;          /* cinza esverdeado para texto secundário         */
  --border:       rgba(26,61,31,.10);
  --dark:         #0D1A0E;          /* fundo escuro — seções night garden             */
  --dark-2:       #111C12;
  --border-dark:  rgba(255,255,255,.10);
  --radius:       0.9rem;
  --nav-height:   76px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: 'Nunito', sans-serif;
  background: var(--sage-bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
button{ font-family: inherit; }

/* ── TIPOGRAFIA GLOBAL ──────────────────────────────────────── */
.section-label {
  font-family: 'Nunito', sans-serif;
  font-size: .70rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--leaf);
  opacity: .3;
  max-width: 56px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.15;
  color: var(--forest);
  font-weight: 600;
}
.section-title em {
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}

/* ── BOTÕES GLOBAIS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--forest);
  color: var(--sage-bg);
  padding: .85rem 2.1rem;
  border-radius: 3rem;
  font-family: 'Nunito', sans-serif;
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 700;
  border: 2px solid var(--forest);
  cursor: pointer;
  transition: background .22s, border-color .22s, transform .18s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-1px);
}
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--forest);
  padding: .85rem 2.1rem;
  border-radius: 3rem;
  font-family: 'Nunito', sans-serif;
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 700;
  border: 2px solid var(--forest);
  cursor: pointer;
  transition: background .22s, color .22s, transform .18s;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--sage-bg);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(237,244,234,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: .01em;
  line-height: 1;
}
.nav-logo-text em { color: var(--rose); font-style: italic; font-weight: 400; }

/* Links */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-size: .73rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--forest); }
.nav-links a.active::after { transform: scaleX(1); }

/* Direita da nav */
.nav-right {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.nav-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--forest);
  color: var(--sage-bg);
  padding: .44rem 1.1rem;
  border-radius: 2rem;
  font-family: 'Nunito', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .2s;
}
.nav-wa-btn:hover { background: var(--rose); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: .55rem;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}
.nav-hamburger:hover { background: var(--sage-dark); }
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}
nav.menu-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
nav.menu-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
  width: 0;
}
nav.menu-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE DRAWER ──────────────────────────────────────────── */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(3px);
}
.nav-mobile-drawer.open { display: block; }

.nav-mobile-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(300px, 85vw);
  height: 100%;
  background: var(--surface);
  padding: 5.5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.22,.68,0,1.1);
  overflow-y: auto;
}
.nav-mobile-drawer.open .nav-mobile-panel { transform: translateX(0); }

.nav-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.nav-mobile-links li a {
  display: block;
  padding: .85rem 0;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}
.nav-mobile-links li:last-child a { border-bottom: none; }
.nav-mobile-links li a:hover { color: var(--rose); padding-left: .4rem; }

.nav-mobile-actions { display: flex; flex-direction: column; gap: .75rem; }

.nav-mobile-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .9rem 1rem;
  background: var(--forest);
  border: none;
  border-radius: .75rem;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--sage-bg);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  transition: background .2s;
  width: 100%;
}
.nav-mobile-wa-btn:hover { background: var(--rose); }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-height);
  overflow: hidden;
}

/* Painel esquerdo — texto */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7% 5% 7% 8%;
  background: var(--sage-bg);
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-family: 'Nunito', sans-serif;
  font-size: .70rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--leaf);
  font-weight: 700;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-tagline::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--leaf);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  line-height: 1.05;
  color: var(--forest);
  margin-bottom: 1.75rem;
  font-weight: 600;
}
.hero-title em {
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}

.hero-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Painel direito — ilustração botânica */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--forest);
}
.hero-botanical-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.botanical-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Badge flutuante no painel botânico */
.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-badge-icon { font-size: 1.8rem; line-height: 1; }
.hero-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-badge-text {
  font-family: 'Nunito', sans-serif;
  font-size: .68rem;
  color: rgba(255,255,255,.60);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .1rem;
}

/* Animações de entrada no hero */
.hero-left > * {
  animation: fadeUp .7s ease both;
}
.hero-left > *:nth-child(1) { animation-delay: .10s; }
.hero-left > *:nth-child(2) { animation-delay: .22s; }
.hero-left > *:nth-child(3) { animation-delay: .36s; }
.hero-left > *:nth-child(4) { animation-delay: .52s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ═══════════════════════════════════════════════════════════════
   SOBRE NÓS
═══════════════════════════════════════════════════════════════ */
#sobre {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  align-items: stretch;
  background: var(--surface);
}

/* Placeholder de imagem à esquerda */
.sobre-img {
  background: var(--sage-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--leaf);
  font-family: 'Nunito', sans-serif;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
/* Gradiente sutil de jardim no placeholder */
.sobre-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 28% 38%, rgba(75,138,88,.18) 0%, transparent 62%),
    radial-gradient(ellipse at 72% 68%, rgba(191,79,122,.10) 0%, transparent 50%);
  pointer-events: none;
}
/* Para usar imagem real: adicione class="sobre-img" com background-image no CSS inline
   ou configure via PHP: style="background-image:url('/img/loja.jpg'); background-size:cover; background-position:center;" */

/* Conteúdo de texto */
.sobre-content { padding: 6% 8%; }

.sobre-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin: 1.4rem 0;
}
.sobre-text--last { margin-bottom: 2rem; }

/* Estatísticas */
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: var(--rose);
  font-weight: 600;
  line-height: 1;
}
.stat-label {
  font-family: 'Nunito', sans-serif;
  font-size: .70rem;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: .35rem;
}

/* ═══════════════════════════════════════════════════════════════
   SERVIÇOS
═══════════════════════════════════════════════════════════════ */
#servicos {
  padding: 6rem 8%;
  background: var(--sage-bg);
}

.servicos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.servicos-desc {
  font-family: 'Nunito', sans-serif;
  color: var(--text-muted);
  font-size: .88rem;
  max-width: 320px;
  text-align: right;
  line-height: 1.75;
  font-weight: 300;
}

/* Grid de 3 colunas */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.servico-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform .30s, box-shadow .30s, border-color .30s;
}
/* Faixa de destaque no topo ao hover */
.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf), var(--rose));
  opacity: 0;
  transition: opacity .30s;
}
.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(26,61,31,.10);
  border-color: rgba(75,138,88,.25);
}
.servico-card:hover::before { opacity: 1; }

.servico-icon {
  width: 52px;
  height: 52px;
  border-radius: .75rem;
  background: var(--sage-bg);
  border: 1px solid rgba(75,138,88,.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--leaf);
  margin-bottom: 1.25rem;
  transition: background .28s, color .28s;
}
.servico-card:hover .servico-icon {
  background: var(--leaf);
  color: #fff;
}

.servico-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: .65rem;
}
.servico-desc-text {
  font-family: 'Nunito', sans-serif;
  font-size: .87rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════
   CTA WHATSAPP (faixa dark)
═══════════════════════════════════════════════════════════════ */
#cta-wa {
  padding: 5rem 8%;
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
/* Emojis decorativos de fundo */
#cta-wa::before {
  content: '🌸';
  position: absolute;
  right: 32%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9rem;
  opacity: .035;
  pointer-events: none;
  line-height: 1;
}

.cta-wa-label {
  font-family: 'Nunito', sans-serif;
  font-size: .65rem;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--leaf-light);
  font-weight: 700;
  margin-bottom: .75rem;
}
.cta-wa-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: .85rem;
  font-weight: 600;
}
.cta-wa-title em { font-style: italic; color: var(--leaf-light); font-weight: 400; }
.cta-wa-desc {
  font-family: 'Nunito', sans-serif;
  font-size: .92rem;
  color: rgba(255,255,255,.52);
  line-height: 1.82;
  max-width: 520px;
  font-weight: 300;
}

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 1.05rem 2.2rem;
  border-radius: 3rem;
  font-family: 'Nunito', sans-serif;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .18s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-cta-wa:hover { opacity: .88; transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════════
   DEPOIMENTOS
═══════════════════════════════════════════════════════════════ */
#depoimentos {
  padding: 6rem 8%;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
/* Aspas decorativas */
#depoimentos::before {
  content: '"';
  position: absolute;
  top: -3rem;
  left: 5%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  color: rgba(255,255,255,.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

#depoimentos .section-label       { color: var(--leaf-light); }
#depoimentos .section-label::after{ background: var(--leaf-light); opacity: .3; }
#depoimentos .section-title       { color: #fff; }
#depoimentos .section-title em    { color: var(--rose-light); }

/* ── Carrossel ─────────────────────────────────────────────── */
.dep-carousel-wrap {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}
.dep-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
/* 3 por página em desktop */
.dep-carousel-track .dep-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}

/* Controles */
.dep-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}
.dep-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.70);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.dep-btn:hover { background: var(--rose); border-color: var(--rose); color: #fff; }
.dep-btn:disabled { opacity: .3; pointer-events: none; }

/* Dots */
.dep-dots { display: flex; gap: .4rem; align-items: center; }
.dep-dot {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: transparent;
  cursor: pointer;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.dep-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  transition: all .28s;
  display: block;
}
.dep-dot.active::after {
  background: var(--rose-light);
  width: 22px;
  border-radius: 3px;
}

/* Cards */
.dep-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: background .2s;
}
.dep-card:hover { background: rgba(255,255,255,.11); }

.dep-stars  { color: var(--rose-light); font-size: .88rem; margin-bottom: 1rem; letter-spacing: .08em; }
.dep-text   {
  font-family: 'Nunito', sans-serif;
  font-size: .90rem;
  line-height: 1.85;
  color: rgba(237,244,234,.78);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.dep-author { display: flex; align-items: center; gap: .75rem; }
.dep-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.dep-name { font-family: 'Nunito', sans-serif; font-size: .82rem; font-weight: 700; color: #fff; }
.dep-loc  { font-family: 'Nunito', sans-serif; font-size: .72rem; color: rgba(237,244,234,.45); margin-top: .1rem; }

/* ═══════════════════════════════════════════════════════════════
   INSTAGRAM
═══════════════════════════════════════════════════════════════ */
#instagram {
  padding: 6rem 8%;
  background: var(--surface);
  text-align: center;
}

.ig-header { margin-bottom: 2.5rem; }
#instagram .section-label { justify-content: center; }
#instagram .section-label::after  { display: none; }
#instagram .section-label::before {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--leaf);
  opacity: .3;
}

.ig-embed-wrap { position: relative; min-height: 280px; }

/* Grid de 3 colunas */
.ig-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  max-width: 840px;
  margin: 0 auto;
}

.ig-post-item {
  aspect-ratio: 1 / 1;
  background: var(--sage-dark);
  border-radius: .5rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
  text-decoration: none;
}
.ig-post-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s, filter .35s;
}
.ig-post-item:hover img { transform: scale(1.06); filter: brightness(.70); }

/* Placeholder (enquanto sem API) */
.ig-post-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--sage-dark);
  transition: background .25s;
  padding: .5rem;
}
.ig-post-item:hover .ig-post-placeholder { background: var(--sage-bg); }

/* Overlay ao hover */
.ig-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,61,31,.56);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  opacity: 0;
  transition: opacity .25s;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  padding: .75rem;
}
.ig-post-item:hover .ig-post-overlay { opacity: 1; }
.ig-post-icon { font-size: 1.3rem; }

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
  color: var(--forest);
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-size: .78rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 2px solid var(--rose);
  padding-bottom: .2rem;
  transition: color .2s;
}
.ig-link:hover { color: var(--rose); }

/* ═══════════════════════════════════════════════════════════════
   CONTATO (seção unificada)
═══════════════════════════════════════════════════════════════ */
#contato {
  padding: 6rem 8%;
  background: var(--sage-bg);
}

/* Cabeçalho centrado */
.contato-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 4rem;
}
.contato-header .section-label { justify-content: center; }
.contato-header .section-label::after  { display: none; }
.contato-header .section-label::before {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--leaf);
  opacity: .3;
}
.contato-intro {
  font-family: 'Nunito', sans-serif;
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.80;
  font-weight: 300;
}

/* Layout 2 colunas */
.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contato-sub-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1.5rem;
}
.contato-sub-title em { color: var(--rose); font-style: italic; font-weight: 400; }

/* Cards de canal */
.contato-cards {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.contato-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .95rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: .8rem;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  transition: border-color .22s, background .22s, box-shadow .22s;
}
.contato-card:hover {
  border-color: rgba(75,138,88,.40);
  background: var(--surface-alt);
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
}
.contato-card-icon {
  width: 46px;
  height: 46px;
  border-radius: .75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contato-card-title {
  font-family: 'Nunito', sans-serif;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: var(--text-muted);
}
.contato-card-val {
  font-family: 'Nunito', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--forest);
  margin: .15rem 0 .1rem;
}
.contato-card-desc {
  font-family: 'Nunito', sans-serif;
  font-size: .70rem;
  color: var(--text-muted);
}
.contato-card-arrow { margin-left: auto; color: var(--leaf); font-size: .95rem; flex-shrink: 0; }

/* Info aside */
.contato-info-aside {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.contato-info-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
}
.contato-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contato-info-icon { font-size: 1.05rem; flex-shrink: 0; margin-top: .1rem; }
.contato-info-item strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--forest);
  font-weight: 700;
  margin-bottom: .18rem;
}
.contato-info-item span {
  font-family: 'Nunito', sans-serif;
  font-size: .85rem;
  color: var(--text-muted);
}

/* Formulário */
.contato-form-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contato-form-modern label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: var(--text-muted);
  margin-bottom: .35rem;
  font-weight: 700;
}
.contato-form-modern input,
.contato-form-modern textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: .65rem;
  padding: .82rem 1rem;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
  outline: none;
}
.contato-form-modern input:focus,
.contato-form-modern textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(75,138,88,.10);
}
.contato-form-modern input::placeholder,
.contato-form-modern textarea::placeholder {
  color: var(--text-muted);
  opacity: .45;
}
.contato-form-modern textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }

/* Feedback do formulário */
.cf-feedback {
  border-radius: .65rem;
  padding: .8rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: .84rem;
  margin-top: .25rem;
}
.cf-feedback--erro { background: rgba(220,50,50,.08); border: 1px solid rgba(220,50,50,.25); color: #c0392b; }
.cf-feedback--ok   { background: rgba(40,140,60,.08); border: 1px solid rgba(40,140,60,.25); color: #217c40; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
footer {
  background: var(--dark);
  color: rgba(237,244,234,.55);
  padding: 4.5rem 8% 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(237,244,234,.90);
  letter-spacing: .01em;
  margin-bottom: .6rem;
}
.footer-logo em { color: var(--rose-light); font-style: italic; font-weight: 400; }

.footer-brand-desc {
  font-family: 'Nunito', sans-serif;
  font-size: .80rem;
  line-height: 1.75;
  color: rgba(237,244,234,.40);
  font-weight: 300;
  max-width: 260px;
  margin: .5rem 0 1.25rem;
}

.footer-social { display: flex; gap: .6rem; }
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(191,79,122,.30);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-light);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.footer-social-link:hover {
  background: rgba(191,79,122,.14);
  border-color: var(--rose-light);
}

.footer-nav-title {
  font-family: 'Nunito', sans-serif;
  font-size: .63rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-nav ul li a {
  font-family: 'Nunito', sans-serif;
  font-size: .80rem;
  color: rgba(237,244,234,.42);
  text-decoration: none;
  transition: color .2s;
}
.footer-nav ul li a:hover { color: var(--rose-light); }
.footer-nav ul li span {
  font-family: 'Nunito', sans-serif;
  font-size: .80rem;
  color: rgba(237,244,234,.30);
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p {
  font-family: 'Nunito', sans-serif;
  font-size: .76rem;
  margin: 0;
  color: rgba(237,244,234,.35);
}
.footer-disclaimer { opacity: .65; }

/* ═══════════════════════════════════════════════════════════════
   BOTÃO FLUTUANTE WHATSAPP
═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,.42);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.10);
  box-shadow: 0 6px 30px rgba(37,211,102,.52);
}

/* ═══════════════════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--leaf);
  color: #fff;
  padding: .75rem 1.6rem;
  border-radius: 2rem;
  font-family: 'Nunito', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  white-space: nowrap;
  max-width: calc(100vw - 2rem);
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO — Tablets (≤1100px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
  }
  .footer-brand-desc { max-width: 400px; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  #cta-wa { grid-template-columns: 1fr; gap: 2rem; }
  .btn-cta-wa { width: fit-content; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO — Mobile grande (≤900px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Hero empilhado */
  .hero { grid-template-columns: 1fr; }
  .hero-right {
    min-height: 44vw;
    max-height: 370px;
    order: -1;
  }
  .hero-badge { bottom: 1.2rem; left: 1.2rem; }
  .hero-left {
    text-align: center;
    align-items: center;
    padding: 5% 6% 7%;
  }
  .hero-tagline { justify-content: center; }
  .hero-desc    { margin-left: auto; margin-right: auto; }
  .hero-ctas    { justify-content: center; }

  /* Sobre empilhado */
  #sobre { grid-template-columns: 1fr; }
  .sobre-img    { min-height: 280px; order: -1; }
  .sobre-content { text-align: center; padding: 5% 6%; }
  .sobre-content .btn-primary { margin: 0 auto; }
  .sobre-stats { justify-items: center; }
  .stat-num { font-size: 2rem; }

  /* Nav mobile */
  .nav-links  { display: none; }
  .nav-wa-btn { display: none; }
  .nav-hamburger { display: flex; }

  /* Centralizar logo no mobile */
  .nav-top {
    padding: 0 1rem;
    position: relative;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Contato */
  .contato-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row       { grid-template-columns: 1fr; }

  /* Carousel: 2 por página */
  .dep-carousel-track .dep-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO — Mobile (≤600px)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  #servicos,
  #depoimentos,
  #instagram,
  #contato {
    padding: 4rem 5%;
  }

  .servicos-grid  { grid-template-columns: 1fr; }
  .ig-posts-grid  { grid-template-columns: repeat(2, 1fr); }
  .sobre-stats    { grid-template-columns: repeat(3, 1fr); gap: .75rem; }

  /* Footer full single column */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .footer-brand { align-items: center; flex-direction: column; }
  .footer-brand-desc { max-width: 100%; }
  .footer-social { justify-content: center; }
  .footer-nav ul { align-items: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  /* Carousel: 1 por página */
  .dep-carousel-track .dep-card { flex: 0 0 100%; }

  .hero-badge { right: 1.2rem; }

  #cta-wa { padding: 4rem 5%; }
}

/* ── Desktop: esconde hamburger/drawer ──────────────────────── */
@media (min-width: 901px) {
  .nav-hamburger { display: none !important; }
  .nav-mobile-drawer { display: none !important; }
}
