/* ===============================================
   DEVA'SPICE – STYLESHEET
   Artisanal, Modern, High-Impact UI/UX
   =============================================== */

/* ── VARIABLES ── */
:root {
  --gold: #d4860a;
  --gold-light: #f59e0b;
  --gold-pale: #fef3c7;
  --spice: #c0392b;
  --spice-light: #e74c3c;
  --pineapple: #f39c12;
  --green-fresh: #27ae60;
  --dark: #1a0a00;
  --dark2: #2d1306;
  --mid: #6b3a1f;
  --text: #2c1a0e;
  --text-light: #6b5244;
  --bg: #fffdf8;
  --bg2: #fff9f0;
  --white: #ffffff;
  --border: rgba(212, 134, 10, 0.2);
  --shadow: 0 8px 40px rgba(212, 134, 10, 0.15);
  --shadow-dark: 0 20px 60px rgba(26, 10, 0, 0.3);
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--gold), var(--pineapple));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 134, 10, 0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pineapple), var(--spice));
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 32px rgba(212, 134, 10, 0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; }
.btn-large { padding: 1.1rem 2.5rem; font-size: 1.1rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── FLOATING NAV ── */
.float-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 60px;
  padding: 1rem .6rem;
  box-shadow: 0 8px 40px rgba(26,10,0,.15), 0 0 0 1px rgba(212,134,10,.15);
}
.nav-logo-float {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--gold);
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: .2rem;
  width: 100%;
  text-align: center;
}
.nav-items { list-style: none; display: flex; flex-direction: column; gap: .2rem; }
.nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
}
.nav-item:hover, .nav-item.active {
  background: linear-gradient(135deg, var(--gold), var(--pineapple));
  transform: scale(1.15);
}
.nav-item::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  padding: .35rem .7rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.nav-item:hover::after { opacity: 1; }
.btn-parceiro-nav {
  margin-top: .5rem;
  padding-top: .5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 800;
  color: var(--spice);
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  transition: var(--transition);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  letter-spacing: .02em;
}
.btn-parceiro-nav:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  left: auto;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: wpp-pulse 2s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.6); }
.wpp-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}
@keyframes wpp-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,.8), 0 0 0 10px rgba(37,211,102,.1); }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8ed 0%, #fff3d4 40%, #ffe8b0 100%);
  padding: 4rem 2rem 4rem 4rem;
}
.hero-bg-anim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(245,158,11,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(192,57,43,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 60%, rgba(243,156,18,.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: .35;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: .35; }
  90% { opacity: .35; }
  100% { transform: translateY(-20vh) rotate(720deg); opacity: 0; }
}
.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,134,10,.12);
  border: 1px solid rgba(212,134,10,.3);
  color: var(--gold);
  font-size: .85rem;
  font-weight: 700;
  padding: .45rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
}
.hero-title {
  font-family: var(--font-display);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.title-line1 {
  display: block;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--dark2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-line2 {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-top: .3rem;
}
.title-line2 em {
  font-style: italic;
  color: var(--spice);
  -webkit-text-fill-color: var(--spice);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; gap: 1rem; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(255,255,255,.7);
  padding: .4rem .9rem;
  border-radius: 50px;
  border: 1px solid rgba(212,134,10,.15);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-jar-wrap {
  position: relative;
  width: 340px;
  height: 380px;
}
.hero-jar {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(212,134,10,.3));
  animation: jar-float 4s ease-in-out infinite;
}
@keyframes jar-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.jar-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(212,134,10,.35), transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { opacity: .5; transform: translateX(-50%) scaleX(1); }
  50% { opacity: .8; transform: translateX(-50%) scaleX(1.2); }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .6;
  animation: fade-up .5s ease forwards;
}
.hero-scroll-hint span { font-size: .8rem; font-weight: 600; color: var(--text-light); }
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce-down 1.5s ease-in-out infinite;
}
@keyframes bounce-down {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

/* ── STATS STRIP ── */
.stats-strip {
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .8rem 3rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label { font-size: .8rem; color: rgba(255,255,255,.65); font-weight: 600; margin-top: .2rem; text-align: center; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,.15); }

/* ── SECTION LAYOUT ── */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: .8rem;
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 600px; margin-bottom: 3rem; }

/* ── PRODUTO ── */
.produto-section { padding: 6rem 0; background: var(--bg); }
.produto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.produto-img-stack {
  position: relative;
  height: 480px;
}
.pimg { position: absolute; border-radius: var(--radius-lg); object-fit: cover; }
.pimg-main {
  width: 80%;
  height: 85%;
  top: 0; left: 0;
  z-index: 2;
  box-shadow: var(--shadow-dark);
  object-fit: contain;
}
.pimg-back {
  width: 65%;
  height: 65%;
  bottom: 0; right: 0;
  z-index: 1;
  filter: brightness(.85);
  object-fit: contain;
  box-shadow: var(--shadow);
}
.produto-badge-float {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--pineapple));
  color: white;
  font-weight: 800;
  font-size: .85rem;
  padding: .6rem 1.4rem;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(212,134,10,.4);
  z-index: 3;
  white-space: nowrap;
}
.produto-info-col { display: flex; flex-direction: column; gap: 1.5rem; }
.produto-info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--bg2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.produto-info-block:hover { transform: translateX(6px); border-color: var(--gold-light); box-shadow: var(--shadow); }
.info-icon { font-size: 1.8rem; flex-shrink: 0; }
.produto-info-block h3 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: .3rem; }
.produto-info-block p { font-size: .9rem; color: var(--text-light); line-height: 1.6; }

/* ── SABORES ── */
.sabores-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.sabores-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0a00 0%, #2d1306 50%, #1a0500 100%);
}
.sabores-section .section-container { position: relative; z-index: 1; }
.sabores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.sabor-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.sabor-card:hover {
  background: rgba(245,158,11,.12);
  border-color: rgba(245,158,11,.5);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(245,158,11,.2);
}
.sabor-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.sabor-card h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: .6rem; }
.sabor-card p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ── GALERIA ── */
.galeria-section { padding: 6rem 0; background: var(--bg2); }
.galeria-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 3rem;
}
.gal-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }
.gal-item { min-height: 220px; }
.gal-tall { min-height: 460px; }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,0,.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity .3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  color: white;
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--font-display);
  font-style: italic;
}
.share-cta {
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.share-cta p { font-size: 1rem; color: var(--text); margin-bottom: 1rem; }
.share-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.share-btn {
  padding: .6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
  border: 2px solid transparent;
}
.share-btn.wpp { background: #25D366; color: white; }
.share-btn.wpp:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,211,102,.4); }
.share-btn.fb { background: #1877F2; color: white; }
.share-btn.fb:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(24,119,242,.4); }
.share-btn.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.share-btn.ig:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(220,39,67,.4); }

/* ── PRECOS ── */
.preco-section { padding: 6rem 0; background: var(--bg); }
.preco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.preco-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  transition-delay: var(--delay, 0s);
}
.preco-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-dark); }
.preco-destaque {
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  border-color: var(--gold);
  transform: scale(1.04);
}
.preco-destaque:hover { transform: scale(1.04) translateY(-8px); }
.preco-best {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--pineapple));
  color: white;
  font-size: .8rem;
  font-weight: 800;
  padding: .35rem 1.2rem;
  border-radius: 50px;
  white-space: nowrap;
}
.preco-icon { font-size: 2.5rem; margin-bottom: .8rem; }
.preco-tag {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.preco-destaque .preco-tag { color: var(--gold-light); }
.preco-valor {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: .3rem;
}
.preco-valor span { font-size: 3.2rem; font-weight: 900; }
.preco-valor sup { font-size: 1.2rem; vertical-align: super; }
.preco-destaque .preco-valor { color: var(--white); }
.preco-promo { color: var(--gold-light) !important; }
.preco-unidade {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.preco-destaque .preco-unidade { color: rgba(255,255,255,.6); }
.preco-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.preco-features li {
  font-size: .9rem;
  color: var(--text-light);
}
.preco-destaque .preco-features li { color: rgba(255,255,255,.8); }
.entrega-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--gold-pale), #fff8e1);
  border: 1px solid rgba(212,134,10,.25);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}
.entrega-icon { font-size: 2.5rem; flex-shrink: 0; }
.entrega-info strong { font-size: 1rem; color: var(--text); display: block; margin-bottom: .3rem; }
.entrega-info p { font-size: .9rem; color: var(--text-light); }

/* ── PARCEIRO ── */
.parceiro-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.parceiro-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1a0a00 0%, #3d1a06 60%, #1a0a00 100%);
}
.parceiro-section .section-container { position: relative; z-index: 1; }
.parceiro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.parceiro-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: var(--transition);
}
.parceiro-card:hover {
  background: rgba(245,158,11,.1);
  border-color: rgba(245,158,11,.4);
  transform: translateX(6px);
}
.parc-ico { font-size: 2rem; flex-shrink: 0; }
.parceiro-card h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: .4rem; }
.parceiro-card p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.6; }
.parceiro-cta {
  text-align: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
}
.parceiro-cta h3 { font-family: var(--font-display); font-size: 1.6rem; color: #fff; margin-bottom: 1.5rem; }

/* ── DEPOIMENTOS ── */
.depoimentos-section { padding: 6rem 0; background: var(--bg2); }
.depo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.depo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.depo-card::before {
  content: '"';
  position: absolute;
  top: .5rem;
  left: 1.2rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-pale);
  line-height: 1;
  pointer-events: none;
}
.depo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.depo-stars { font-size: 1rem; margin-bottom: 1rem; }
.depo-card p { font-size: .95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.depo-autor { display: flex; align-items: center; gap: .8rem; }
.depo-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--pineapple));
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.depo-autor strong { font-size: .9rem; color: var(--text); display: block; }
.depo-autor small { font-size: .8rem; color: var(--text-light); }

/* ── CONTATO ── */
.contato-section { padding: 6rem 0; background: var(--bg); }
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contato-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contato-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contato-item:hover { border-color: var(--gold-light); box-shadow: var(--shadow); }
.contato-ico { font-size: 1.8rem; flex-shrink: 0; }
.contato-item strong { font-size: .85rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: .2rem; }
.contato-item a { color: var(--text); font-weight: 600; transition: color .2s; font-size: .95rem; }
.contato-item a:hover { color: var(--gold); }
.contato-item span { font-size: .95rem; color: var(--text-light); }
.contato-cta-box {
  background: linear-gradient(135deg, var(--dark2), var(--dark));
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-dark);
}
.contato-cta-box h3 { font-family: var(--font-display); font-size: 1.8rem; color: #fff; margin-bottom: .8rem; }
.contato-cta-box p { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 2rem; line-height: 1.7; }
.wpp-btn { background: #25D366 !important; box-shadow: 0 4px 20px rgba(37,211,102,.4) !important; gap: .7rem; }
.wpp-btn:hover { background: #1da851 !important; }
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.2);
  transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link.ig { color: #fff; }
.social-link.ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #bc1888); border-color: transparent; transform: scale(1.1); }
.social-link.fb { color: #fff; }
.social-link.fb:hover { background: #1877F2; border-color: transparent; transform: scale(1.1); }
.social-link.wa { color: #fff; }
.social-link.wa:hover { background: #25D366; border-color: transparent; transform: scale(1.1); }

/* ── FOOTER ── */
.footer {
  background: linear-gradient(180deg, #0f0500, #1a0800);
  padding: 4rem 2rem 1.5rem;
}
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212,134,10,.2);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: .5rem;
}
.footer-slogan { font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 1.2rem; line-height: 1.6; }
.footer-socials { display: flex; gap: .7rem; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212,134,10,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: white; transform: translateY(-3px); }
.footer-links h4 { font-size: .85rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a, .footer-links span {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(212,134,10,.7); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .float-nav { right: 12px; }
  .sabores-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 5rem 1.5rem 3rem; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-ctas, .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .hero-jar-wrap { width: 260px; height: 280px; }
  .float-nav {
    right: 0; top: auto; bottom: 0;
    transform: none;
    flex-direction: row;
    width: 100%;
    border-radius: 20px 20px 0 0;
    padding: .6rem 1rem;
    justify-content: center;
  }
  .nav-logo-float, .btn-parceiro-nav { display: none; }
  .nav-items { flex-direction: row; gap: .3rem; }
  .nav-item::after { display: none; }
  .produto-grid { grid-template-columns: 1fr; }
  .produto-img-stack { height: 320px; }
  .sabores-grid { grid-template-columns: 1fr; }
  .galeria-masonry { grid-template-columns: 1fr 1fr; }
  .gal-tall { grid-row: auto; }
  .gal-wide { grid-column: auto; }
  .preco-grid { grid-template-columns: 1fr; }
  .preco-destaque { transform: none; }
  .parceiro-grid { grid-template-columns: 1fr; }
  .depo-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-strip { flex-direction: column; gap: 0; }
  .stat-divider { width: 60px; height: 1px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-float { bottom: 80px; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .galeria-masonry { grid-template-columns: 1fr; }
}

/* Correção para o botão de WhatsApp na seção de contato */
.btn-primary.wpp-btn:hover {
  background: #ca8b04 !important; /* Mantém o verde no hover */
  box-shadow: 0 8px 30px rgba(238, 183, 5, 0.6) !important; /* Sombra verde suave */
}

/* Remove o efeito de gradiente laranja que estava cobrindo o botão */
.btn-primary.wpp-btn:hover::before {
  display: none;
}

/* Garante que o texto fique sempre branco e visível */
.btn-primary.wpp-btn span {
  color: white !important;
  font-weight: 800;
}

/* ============================================
   CORREÇÃO: Manter texto visível nos botões
   ============================================ */

/* Garante que o texto dos botões de preço fique sempre visível */
.preco-card .btn-primary span {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), 
               0 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
  font-weight: 800;
}

/* Garante que o ícone SVG também fique visível */
.preco-card .btn-primary svg {
  fill: #ffffff !important;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4));
  position: relative;
  z-index: 10;
}

/* Mantém o gradiente no hover mas garante visibilidade do texto */
.preco-card .btn-primary:hover {
  /* Mantém o gradiente laranja/vermelho */
}

.preco-card .btn-primary:hover::before {
  /* Permite o gradiente, mas com opacidade controlada */
  opacity: 0.20;
}

/* Arredonda os cantos da imagem principal do Hero */
.hero-jar {
  border-radius: 210px; /* Ajuste o valor para mais ou menos curvatura */
}

