/* =========================================================
   Apiário Recanto dos Oliveiras — Nova Ponte, MG
   Paleta derivada da logomarca: amarelo favo, âmbar da
   abelha, traço preto, tons de barro e cerrado.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@400;500;600;700;800&family=Karla:wght@400;500;600;700&display=swap');

:root{
  --cream:        #FBF6E6;
  --cream-deep:   #F2EAD2;
  --panel-yellow: #F5E15B;
  --panel-yellow-soft: #FAEDA0;
  --amber:        #D98F1E;
  --amber-deep:   #B8721A;
  --ink:          #241C10;
  --ink-soft:     #55492F;
  --ink-faint:    #8A7C5C;
  --clay:         #A63D2C;
  --olive:        #5C6B3F;
  --white:        #FFFDF7;

  --font-display: 'Bitter', Georgia, 'Times New Roman', serif;
  --font-body: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius: 18px;
  --shadow-soft: 0 12px 30px -14px rgba(36,28,16,0.28);
  --shadow-lift: 0 20px 40px -16px rgba(36,28,16,0.35);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.12;
  font-weight: 700;
}
p{ margin: 0 0 1em; color: var(--ink-soft); }
a{ color: inherit; text-decoration: none; }

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

.eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--amber-deep); margin-bottom: 14px;
}
.eyebrow::before{
  content: ""; width: 9px; height: 9px; background: var(--amber);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}
.eyebrow--center{ justify-content: center; }
.eyebrow--on-dark{ color: var(--panel-yellow); }
.eyebrow--on-dark::before{ background: var(--panel-yellow); }
.eyebrow--on-amber{ color: rgba(255,253,247,0.9); }
.eyebrow--on-amber::before{ background: var(--white); }

.section{ padding: 96px 0; position: relative; }
.section--tight{ padding: 60px 0; }
@media (max-width: 720px){ .section{ padding: 64px 0; } }

.section-head{ max-width: 660px; margin-bottom: 52px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(1.9rem, 2.6vw + 1rem, 2.6rem); }
.section-head p{ font-size: 1.06rem; }

/* ---------- botões ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 100px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.98rem;
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn svg{ width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary{ background: var(--amber); color: var(--white); box-shadow: var(--shadow-soft); }
.btn-primary:hover{ background: var(--amber-deep); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-ghost{ background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover{ background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-on-dark{ background: transparent; border-color: rgba(251,246,230,0.5); color: var(--cream); }
.btn-on-dark:hover{ background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ---------- nav ---------- */
.nav{
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,246,230,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(36,28,16,0.08);
}
.nav .container{ display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav-brand{ display: flex; align-items: center; gap: 12px; }
.nav-brand img{ width: 46px; height: auto; }
.nav-brand-text{ display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-text strong{ font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; }
.nav-brand-text span{ font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.nav-links{ display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a{ font-weight: 600; font-size: 0.93rem; color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav-links a:hover{ color: var(--ink); }
.nav-links a::after{
  content:""; position: absolute; left:0; right:0; bottom:-2px; height: 2px;
  background: var(--amber); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after{ transform: scaleX(1); }
.nav-cta{ display: flex; align-items: center; gap: 14px; }
.nav-cta .btn{ padding: 11px 22px; font-size: 0.9rem; }
.nav-toggle{
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span{ width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.nav-links-extra{ display: none; }

@media (max-width: 940px){
  .nav-links{
    position: fixed; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--cream); padding: 26px 24px 32px; gap: 18px;
    border-bottom: 1px solid rgba(36,28,16,0.1);
    transform: translateY(-150%); transition: transform 0.3s ease;
    max-height: calc(100vh - 78px); overflow-y: auto;
  }
  .nav-links.open{ transform: translateY(0); }
  .nav-links-extra{ display: block; }
  .nav-toggle{ display: flex; }
  .nav-cta{ display: none; }
}

/* ---------- hero com vídeo ---------- */
.hero{
  position: relative; overflow: hidden;
  min-height: min(78vh, 720px);
  display: flex; align-items: center;
  padding: 90px 0;
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media video,
.hero-media img{
  width: 100%; height: 100%; object-fit: cover;
  object-position: 62% 50%;
}
.hero-media::after{
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(251,246,230,0.97) 0%, rgba(251,246,230,0.90) 34%, rgba(251,246,230,0.35) 60%, rgba(251,246,230,0.05) 100%),
    radial-gradient(700px 500px at 12% 50%, rgba(251,246,230,0.55), transparent 70%);
}
.hero .container{ position: relative; z-index: 1; }
.hero-copy{ max-width: 620px; }
.hero-copy h1{
  font-size: clamp(2.4rem, 4.2vw + 1rem, 3.7rem);
  max-width: 15ch; margin-bottom: 0.35em;
}
.hero-copy .lede{
  font-size: 1.16rem; color: var(--ink-soft);
  max-width: 44ch; margin-bottom: 32px;
}
.hero-origin{
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,253,247,0.85);
  border: 1px solid rgba(36,28,16,0.12);
  border-radius: 100px; padding: 7px 16px 7px 12px;
  font-size: 0.84rem; font-weight: 700; color: var(--ink-soft);
  margin-bottom: 22px;
}
.hero-origin svg{ width: 15px; height: 15px; color: var(--amber-deep); }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 760px){
  .hero{ min-height: 0; padding: 64px 0 72px; }
  .hero-media::after{
    background:
      linear-gradient(180deg, rgba(251,246,230,0.95) 0%, rgba(251,246,230,0.88) 55%, rgba(251,246,230,0.55) 100%);
  }
  .hero-copy .lede{ max-width: 100%; }
}

/* ---------- faixa de selos ---------- */
.selos{ background: var(--ink); color: var(--cream); padding: 26px 0; }
.selos ul{
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 44px;
}
.selos li{
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.02em;
}
.selos .hexdot{
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--panel-yellow);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex; align-items: center; justify-content: center;
}
.selos .hexdot svg{ width: 11px; height: 11px; color: var(--ink); }

/* ---------- produtos ---------- */
.produtos-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.produto-card{
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(36,28,16,0.07);
  box-shadow: var(--shadow-soft); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.produto-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.produto-foto{ aspect-ratio: 1/1; overflow: hidden; }
.produto-foto img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.produto-card:hover .produto-foto img{ transform: scale(1.05); }
.produto-corpo{ padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.produto-card h3{ font-size: 1.28rem; margin-bottom: 8px; }
.produto-card p{ font-size: 0.96rem; flex: 1; }
.produto-meta{
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 12px;
}
.preco{
  display: block; font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 700; color: var(--ink);
  margin: 6px 0 18px;
}
.preco small{
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-faint);
}
.produto-card .btn{ align-self: flex-start; }

@media (max-width: 980px){ .produtos-grid{ grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (max-width: 640px){ .produtos-grid{ grid-template-columns: 1fr; } }

/* ---------- floradas ---------- */
.floradas{ background: var(--cream-deep); }
.floradas-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.florada-card{
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px 26px; border: 1px solid rgba(36,28,16,0.07);
  box-shadow: var(--shadow-soft); position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.florada-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.florada-card.featured{ border: 2px solid var(--amber); }
.florada-badge{
  position: absolute; top: -13px; left: 22px;
  background: var(--clay); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 13px; border-radius: 100px;
}
.florada-swatch{ width: 100%; height: 10px; border-radius: 100px; margin-bottom: 18px; }
.swatch-cipo{      background: linear-gradient(90deg, #F7E7A8, #E8B93F); }
.swatch-silvestre{ background: linear-gradient(90deg, #D98F1E, #9C5D14); }
.swatch-eucalipto{ background: linear-gradient(90deg, #B8721A, #6B3E12); }
.swatch-aroeira{   background: linear-gradient(90deg, #E0A84A, #A63D2C); }
.florada-card h3{ font-size: 1.24rem; margin-bottom: 4px; }
.florada-tag{
  display: block; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--olive); margin-bottom: 14px;
}
.florada-card p{ font-size: 0.94rem; margin-bottom: 14px; }
.florada-linha{
  display: flex; gap: 8px; font-size: 0.84rem;
  padding-top: 12px; border-top: 1px solid rgba(36,28,16,0.08);
  color: var(--ink-faint);
}
.florada-linha strong{ color: var(--ink-soft); font-weight: 700; }

.floradas-nota{
  margin-top: 34px; text-align: center;
  font-size: 0.94rem; color: var(--ink-faint);
}

@media (max-width: 1000px){ .floradas-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .floradas-grid{ grid-template-columns: 1fr; } }

/* ---------- processo (escuro, com vídeo) ---------- */
.processo{ background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.processo::before{
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(520px 400px at 90% 0%, rgba(245,225,91,0.10), transparent 70%),
    radial-gradient(460px 360px at 0% 100%, rgba(217,143,30,0.14), transparent 70%);
}
.processo .container{ position: relative; }
.processo .section-head h2{ color: var(--cream); }
.processo .section-head p{ color: #C9BFA3; }

.processo-layout{ display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.processo-video{
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lift); position: relative;
  aspect-ratio: 16/9; background: #100c05;
}
.processo-video video{ width: 100%; height: 100%; object-fit: cover; display: block; }
.processo-steps{ display: flex; flex-direction: column; gap: 26px; margin: 0; padding: 0; list-style: none; }
.processo-step{ display: flex; gap: 18px; }
.processo-step .num{
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--panel-yellow); color: var(--ink);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
}
.processo-step h3{ color: var(--cream); font-size: 1.12rem; margin-bottom: 4px; }
.processo-step p{ color: #C9BFA3; font-size: 0.94rem; margin: 0; }

@media (max-width: 900px){
  .processo-layout{ grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- linha do tempo da abelha ---------- */
.linha{ background: var(--white); }
.linha-grid{
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  position: relative;
}
/* fio que liga os passos */
.linha-grid::before{
  content: ""; position: absolute;
  top: 92px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--amber) 0 8px, transparent 8px 16px);
  opacity: 0.45; z-index: 0;
}
.linha-passo{ position: relative; z-index: 1; text-align: center; }
.linha-foto{
  width: 168px; height: 178px; margin: 0 auto 18px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden; background: var(--cream-deep);
  box-shadow: var(--shadow-soft);
}
.linha-foto img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.linha-passo:hover .linha-foto img{ transform: scale(1.08); }
.linha-num{
  display: inline-block; font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--amber-deep); margin-bottom: 6px;
}
.linha-passo h3{ font-size: 1.12rem; margin-bottom: 8px; }
.linha-passo p{ font-size: 0.94rem; margin: 0; }

@media (max-width: 980px){
  .linha-grid{ grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
  .linha-grid::before{ display: none; }
}
@media (max-width: 560px){
  .linha-grid{ grid-template-columns: 1fr; gap: 36px; }
  .linha-foto{ width: 150px; height: 159px; }
}

/* ---------- faixa escura, sangria total ---------- */
.faixa{
  position: relative; overflow: hidden;
  background: #100c05;
  min-height: min(58vh, 520px);
  display: flex; align-items: center;
  padding: 80px 0;
}
.faixa-media{ position: absolute; inset: 0; z-index: 0; }
.faixa-media video,
.faixa-media img{
  width: 100%; height: 100%; object-fit: cover;
  object-position: 70% 50%;
}
.faixa-media::after{
  content:""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(16,12,5,0.94) 0%,
    rgba(16,12,5,0.86) 32%,
    rgba(16,12,5,0.45) 62%,
    rgba(16,12,5,0.20) 100%);
}
.faixa .container{ position: relative; z-index: 1; }
.faixa blockquote{
  margin: 0; max-width: 20ch;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw + 1rem, 3rem);
  line-height: 1.22; color: var(--cream);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.faixa cite{
  display: block; margin-top: 20px; font-style: normal;
  font-size: 0.82rem; letter-spacing: 0.11em; text-transform: uppercase;
  font-weight: 700; color: var(--panel-yellow);
}

@media (max-width: 760px){
  .faixa{ min-height: 0; padding: 68px 0; }
  .faixa-media::after{
    background: linear-gradient(180deg, rgba(16,12,5,0.92) 0%, rgba(16,12,5,0.80) 60%, rgba(16,12,5,0.55) 100%);
  }
  .faixa blockquote{ max-width: 100%; }
}

/* ---------- Seu Omar ---------- */
.omar{ background: var(--panel-yellow-soft); overflow: hidden; }
.omar .container{ display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 60px; align-items: center; }
.omar-foto{
  position: relative; width: 100%;
  aspect-ratio: 1/1.12; overflow: hidden;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: var(--shadow-lift);
}
.omar-foto img{
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns{
  from{ transform: scale(1.04) translate(0, 0); }
  to  { transform: scale(1.15) translate(-1.5%, -2%); }
}
.omar-copy .quote{
  font-family: var(--font-display); font-size: 1.28rem; color: var(--ink);
  border-left: 4px solid var(--amber); padding-left: 20px;
  margin: 24px 0; font-weight: 500; font-style: italic; max-width: 40ch;
}
.omar-copy p{ font-size: 1.02rem; }
.omar-nome{ font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-top: 22px; }
.omar-papel{
  font-size: 0.82rem; color: var(--ink-faint); text-transform: uppercase;
  letter-spacing: 0.09em; font-weight: 700;
}

@media (max-width: 900px){
  .omar .container{ grid-template-columns: 1fr; gap: 36px; }
  .omar-foto{ max-width: 320px; margin: 0 auto; }
}

/* ---------- seção educativa ---------- */
.educa .container{ display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.educa-foto{
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lift); aspect-ratio: 4/5;
}
.educa-foto img{ width: 100%; height: 100%; object-fit: cover; }
.educa-lista{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.educa-item{ display: flex; gap: 16px; }
.educa-item .marca{
  flex-shrink: 0; width: 34px; height: 34px; margin-top: 2px;
  background: var(--panel-yellow);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
}
.educa-item .marca svg{ width: 16px; height: 16px; color: var(--ink); }
.educa-item h3{ font-size: 1.08rem; margin-bottom: 3px; }
.educa-item p{ font-size: 0.95rem; margin: 0; }

@media (max-width: 900px){
  .educa .container{ grid-template-columns: 1fr; gap: 40px; }
  .educa-foto{ max-width: 420px; }
}

/* ---------- FAQ ---------- */
.faq{
  position: relative; overflow: hidden;
  background: var(--cream-deep);
}
.faq-fundo{ position: absolute; inset: 0; z-index: 0; }
.faq-fundo img{ width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.faq-fundo::after{
  content:""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(251,246,230,0.90) 0%, rgba(242,234,210,0.80) 45%, rgba(251,246,230,0.94) 100%);
}
.faq .container{ position: relative; z-index: 1; }
.faq-lista{ max-width: 800px; margin: 0 auto; }
.faq-item{ backdrop-filter: blur(2px); }
.faq-item{
  background: var(--white); border: 1px solid rgba(36,28,16,0.08);
  border-radius: 14px; margin-bottom: 12px; overflow: hidden;
}
.faq-item summary{
  cursor: pointer; list-style: none; padding: 20px 56px 20px 24px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.04rem;
  position: relative; color: var(--ink);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+"; position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; font-weight: 400;
  color: var(--amber); transition: transform 0.25s ease;
}
.faq-item[open] summary::after{ transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-corpo{ padding: 0 24px 22px; }
.faq-item .faq-corpo p{ margin: 0; font-size: 0.98rem; }

/* ---------- CTA ---------- */
.cta{
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
}
.cta::before{
  content:""; position: absolute; inset: 0;
  background: radial-gradient(600px 460px at 50% -10%, rgba(255,253,247,0.28), transparent 70%);
}
.cta .container{ position: relative; }
.cta h2{ color: var(--white); font-size: clamp(1.9rem, 3vw + 1rem, 2.6rem); max-width: 20ch; margin: 0 auto 0.4em; }
.cta p{ color: rgba(255,253,247,0.92); font-size: 1.08rem; max-width: 48ch; margin: 0 auto 32px; }
.cta-actions{ display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.cta .btn-primary{ background: var(--ink); }
.cta .btn-primary:hover{ background: #100c05; }
.cta .btn-ghost{ border-color: rgba(255,253,247,0.7); color: var(--white); }
.cta .btn-ghost:hover{ background: var(--white); color: var(--amber-deep); }

/* ---------- rodapé ---------- */
.footer{ background: var(--ink); color: #C9BFA3; padding: 56px 0 28px; }
.footer .container{ display: flex; justify-content: space-between; gap: 44px; flex-wrap: wrap; }
.footer-brand{ display: flex; align-items: flex-start; gap: 14px; max-width: 330px; }
.footer-brand img{ width: 58px; flex-shrink: 0; }
.footer-brand strong{ font-family: var(--font-display); color: var(--cream); display: block; font-size: 1.02rem; }
.footer-brand p{ font-size: 0.88rem; color: #C9BFA3; margin: 6px 0 0; }
.footer-links{ display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4{
  color: var(--cream); font-family: var(--font-body); font-size: 0.76rem;
  letter-spacing: 0.11em; text-transform: uppercase; margin-bottom: 14px;
}
.footer-col ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-col li{ font-size: 0.9rem; }
.footer-col a:hover{ color: var(--cream); }
.footer-bottom{
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(255,253,247,0.12);
  font-size: 0.8rem; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float{
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--cream);
  border-radius: 100px; padding: 14px 20px 14px 14px;
  box-shadow: var(--shadow-lift);
  transition: transform 0.2s ease, background 0.2s ease;
}
.wa-float:hover{ transform: translateY(-3px); background: var(--amber-deep); }
.wa-float svg{ width: 22px; height: 22px; }
.wa-float span{ font-weight: 700; font-size: 0.88rem; white-space: nowrap; }
@media (max-width: 560px){
  .wa-float span{ display: none; }
  .wa-float{ padding: 14px; right: 16px; bottom: 16px; }
}

/* ---------- ajustes finos de celular ---------- */
@media (max-width: 720px){
  .container{ padding: 0 20px; }
  .section-head{ margin-bottom: 38px; }
  .section-head p{ font-size: 1rem; }

  /* selos empilham em duas colunas em vez de linha apertada */
  .selos{ padding: 22px 0; }
  .selos ul{
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px 16px; justify-items: start;
  }
  .selos li{ font-size: 0.8rem; align-items: flex-start; }
  .selos .hexdot{ margin-top: 2px; }

  /* rodapé: colunas lado a lado sem estourar */
  .footer{ padding: 46px 0 24px; }
  .footer .container{ gap: 34px; }
  .footer-brand{ max-width: 100%; }
  .footer-links{ gap: 28px 34px; }
  .footer-col{ min-width: 44%; }
  .footer-bottom{ margin-top: 32px; font-size: 0.76rem; }

  /* botões ocupam a largura quando estão sozinhos numa linha */
  .hero-actions .btn,
  .cta-actions .btn{ flex: 1 1 220px; }
}

@media (max-width: 420px){
  .selos ul{ grid-template-columns: 1fr; }
  .footer-col{ min-width: 100%; }
  .btn{ padding: 14px 22px; font-size: 0.92rem; }
  .faq-item summary{ padding: 18px 48px 18px 18px; font-size: 0.98rem; }
  .faq-item .faq-corpo{ padding: 0 18px 20px; }
  .produto-corpo{ padding: 22px 20px 24px; }
  .florada-card{ padding: 24px 20px 22px; }
}

/* evita que o botão flutuante cubra o fim do rodapé */
@media (max-width: 560px){
  .footer{ padding-bottom: 84px; }
}

/* ---------- revelação em scroll ---------- */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }
.reveal.d1{ transition-delay: 0.08s; }
.reveal.d2{ transition-delay: 0.16s; }
.reveal.d3{ transition-delay: 0.24s; }
