/* =============================================
   AÇAÍ DA HORA — Stylesheet
   SEO: Belo Horizonte & Região Metropolitana
   ============================================= */

:root {
  --acai:        #7B2D8E;
  --acai-light:  #9C50B1;
  --acai-dark:   #4A1A6B;
  --acai-deeper: #3a1050;
  --gold:        #FFD600;
  --gold-dark:   #FF8F00;
  --gold-light:  #FFE066;
  --green:       #25D366;
  --green-dark:  #1da851;
  --bg-darker:   #0d0518;
  --bg-dark:     #1a0a2e;
  --surface:     #2d1b4e;
  --lavender:    #b8a0d0;
  --text-light:  #e8d5f7;
  --white:       #ffffff;
  --radius:      14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg-darker);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: 'Fredoka', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-darker); }
::-webkit-scrollbar-thumb { background: var(--acai); border-radius: 3px; }

/* ---- Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding: 5rem 0; }
.text-gold { color: var(--gold); }
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Animations ---- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 4px 20px rgba(37,211,102,.35); }
  50% { box-shadow: 0 0 0 12px rgba(37,211,102,.0), 0 4px 20px rgba(37,211,102,.6); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scroll-x {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes glow-ring {
  0%, 100% { box-shadow: 0 0 40px rgba(123,45,142,.4), 0 0 80px rgba(123,45,142,.15); }
  50%       { box-shadow: 0 0 60px rgba(123,45,142,.7), 0 0 100px rgba(123,45,142,.3); }
}
@keyframes particle-rise {
  0%   { transform: translateY(0) scale(1); opacity: .6; }
  100% { transform: translateY(-120px) scale(.3); opacity: 0; }
}
@keyframes counter-pop {
  0%   { transform: scale(.6); opacity: 0; }
  80%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* ---- Reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.navbar.scrolled {
  background: rgba(13,5,24,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(123,45,142,.3);
  padding: .55rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.nav-logo img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--acai-light);
}
.nav-logo-text {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-links a {
  padding: .45rem .9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--lavender);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(155,80,177,.15); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--green);
  color: var(--white) !important;
  padding: .55rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.nav-cta svg { width: 17px; height: 17px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .2rem;
  padding: .75rem 0 1.25rem;
  border-top: 1px solid rgba(155,80,177,.2);
  margin-top: .5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .7rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--lavender);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: var(--white); background: rgba(155,80,177,.15); }
.mobile-menu .nav-cta { margin-top: .5rem; justify-content: center; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 35% 60%, #2d1b4e 0%, #1a0a2e 55%, #0d0518 100%);
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 15%, rgba(123,45,142,.28) 0%, transparent 50%),
    radial-gradient(circle at 5% 85%,  rgba(255,214,0,.07)  0%, transparent 40%);
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particles span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--acai-light);
  animation: particle-rise linear infinite;
  opacity: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  padding: 4rem 0 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,214,0,.1);
  border: 1px solid rgba(255,214,0,.35);
  color: var(--gold);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 1.4rem;
  animation: fadeInUp .6s ease forwards;
}
.hero-badge span { font-size: 1rem; }

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  animation: fadeInUp .6s ease .15s both;
}
.hero-title .cursive {
  font-family: 'Pacifico', cursive;
  display: block;
  color: var(--gold);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  text-shadow: 0 2px 30px rgba(255,214,0,.25);
}

.hero-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2rem;
  animation: fadeInUp .6s ease .3s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
  animation: fadeInUp .6s ease .45s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green);
  color: var(--white);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  animation: pulse-green 2.5s infinite;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-primary svg { width: 20px; height: 20px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--gold);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--gold);
  transition: background .2s, color .2s, transform .2s;
}
.btn-outline:hover { background: var(--gold); color: var(--bg-darker); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: fadeInUp .6s ease .6s both;
}
.hero-stat { }
.hero-stat .num {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: .78rem;
  color: var(--lavender);
  margin-top: .2rem;
}

/* Hero image side */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 5s ease-in-out infinite;
}
.hero-logo-ring {
  position: relative;
  width: 320px; height: 320px;
}
.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,45,142,.35) 0%, transparent 70%);
  animation: glow-ring 3s ease-in-out infinite;
}
.hero-logo-ring::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(155,80,177,.3);
}
.hero-logo-img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(155,80,177,.5);
  position: relative;
  z-index: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--lavender);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--lavender);
  border-bottom: 2px solid var(--lavender);
  transform: rotate(45deg);
}

/* ===================== SECTION HEADER ===================== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: rgba(123,45,142,.18);
  border: 1px solid rgba(123,45,142,.4);
  color: var(--acai-light);
  padding: .28rem .9rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1rem;
}
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: .9rem; }
.section-subtitle {
  color: var(--text-light);
  font-size: 1.02rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===================== PRODUTOS ===================== */
.produtos { background: var(--bg-darker); }

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.4rem;
}

.produto-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(123,45,142,.2);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(123,45,142,.28);
  border-color: rgba(155,80,177,.45);
}
.produto-img-wrap { overflow: hidden; height: 200px; }
.produto-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.produto-card:hover .produto-img-wrap img { transform: scale(1.07); }
.produto-info { padding: 1.1rem 1.25rem 1.25rem; }
.produto-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: .35rem;
}
.produto-desc { font-size: .82rem; color: var(--lavender); line-height: 1.55; }
.produto-tag {
  display: inline-block;
  background: rgba(255,214,0,.1);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  padding: .18rem .6rem;
  border-radius: 20px;
  margin-top: .55rem;
}

/* ===================== SOBRE ===================== */
.sobre {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

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

.sobre-img-wrap { position: relative; }
.sobre-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid rgba(123,45,142,.3);
}
.sobre-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--bg-darker);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(255,214,0,.3);
  text-align: center;
  line-height: 1.2;
}
.sobre-badge .big { font-size: 1.5rem; display: block; }
.sobre-badge .small { font-size: .85rem; }

.sobre-text .section-title { text-align: left; }
.sobre-text .section-tag  { }
.sobre-p {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.sobre-stat {
  text-align: center;
  padding: 1.1rem .75rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid rgba(123,45,142,.2);
}
.sobre-stat .num {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}
.sobre-stat .lbl { font-size: .78rem; color: var(--lavender); margin-top: .2rem; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-darker);
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,214,0,.35); }

/* ===================== SABORES (carousel) ===================== */
.sabores { background: #f8f4ff; overflow: hidden; }
.sabores .section-title { color: var(--bg-dark); }
.sabores .section-subtitle { color: #5a3c7a; }
.sabores .section-tag {
  background: rgba(123,45,142,.1);
  color: var(--acai);
  border-color: rgba(123,45,142,.3);
}

.carousel-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -1.5rem;
}
.carousel-wrap::before,
.carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.carousel-wrap::before { left: 0;  background: linear-gradient(to right, #f8f4ff, transparent); }
.carousel-wrap::after  { right: 0; background: linear-gradient(to left, #f8f4ff, transparent); }

.carousel-track {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  animation: scroll-x 35s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }

.sabor-item { flex-shrink: 0; text-align: center; width: 140px; }
.sabor-img-wrap {
  width: 124px; height: 124px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto .7rem;
  border: 2px solid rgba(123,45,142,.15);
  background: white;
  transition: transform .3s, box-shadow .3s;
}
.sabor-item:hover .sabor-img-wrap {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 10px 22px rgba(123,45,142,.2);
}
.sabor-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.sabor-nome { font-weight: 700; font-size: .83rem; color: var(--acai-dark); }

/* ===================== FRANQUIA ===================== */
.franquia {
  background: linear-gradient(135deg, var(--acai-dark) 0%, var(--bg-dark) 55%, var(--bg-darker) 100%);
  position: relative;
  overflow: hidden;
}
.franquia::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 8%,  rgba(255,214,0,.09) 0%, transparent 40%),
    radial-gradient(circle at 8%  92%, rgba(123,45,142,.3)  0%, transparent 40%);
  pointer-events: none;
}

.franquia-inner { position: relative; z-index: 1; }

.franquia-headline {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(255,214,0,.28);
}
.franquia-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.06rem;
  max-width: 720px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.benefit-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s, transform .3s;
}
.benefit-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,214,0,.3);
  transform: translateY(-5px);
}
.benefit-icon {
  width: 66px; height: 66px;
  margin: 0 auto 1.25rem;
  background: rgba(255,214,0,.1);
  border: 2px solid rgba(255,214,0,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg {
  width: 30px; height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: .45rem;
}
.benefit-desc { color: var(--lavender); font-size: .88rem; line-height: 1.6; }

/* Lead form */
.form-card {
  max-width: 660px;
  margin: 0 auto;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
}
.form-card-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.55rem;
  text-align: center;
  margin-bottom: .4rem;
}
.form-card-sub {
  text-align: center;
  color: var(--lavender);
  font-size: .9rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.form-field label { font-size: .84rem; font-weight: 600; color: var(--lavender); }
.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: .72rem 1rem;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: .94rem;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,.3); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
}
.form-field select option { background: #1a0a2e; color: var(--white); }
.form-field textarea { resize: vertical; min-height: 95px; }

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-darker);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,214,0,.4); }
.btn-submit svg { width: 20px; height: 20px; }

/* ===================== INSTAGRAM ===================== */
.instagram { background: var(--bg-dark); }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.ig-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.ig-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ig-item:hover img { transform: scale(1.09); }
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(123,45,142,.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.ig-item:hover .ig-overlay { opacity: 1; }
.ig-overlay svg { width: 38px; height: 38px; fill: white; }

.ig-cta { text-align: center; }
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: white;
  padding: .9rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-instagram:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(131,58,180,.4); }
.btn-instagram svg { width: 22px; height: 22px; }

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

.dep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.dep-card {
  background: var(--surface);
  border: 1px solid rgba(123,45,142,.2);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform .3s, box-shadow .3s;
}
.dep-card:hover { transform: translateY(-4px); box-shadow: 0 16px 35px rgba(123,45,142,.25); }
.dep-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; letter-spacing: 2px; }
.dep-text { color: var(--text-light); font-size: .92rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.dep-author { display: flex; align-items: center; gap: .7rem; }
.dep-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--acai);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.dep-name { font-weight: 700; font-size: .92rem; }
.dep-location { font-size: .78rem; color: var(--lavender); }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(123,45,142,.2);
  padding: 4rem 0 2rem;
}

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

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
}
.footer-brand .logo-wrap img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--acai-light);
}
.footer-brand .brand-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.footer-brand .brand-name span { color: var(--gold); }
.footer-brand p {
  color: var(--lavender);
  font-size: .88rem;
  line-height: 1.72;
  margin-bottom: 1.25rem;
}
.social-links { display: flex; gap: .65rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(123,45,142,.2);
  border: 1px solid rgba(123,45,142,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.social-link:hover { background: var(--acai); border-color: var(--acai-light); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.06rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: .45rem;
  border-bottom: 2px solid var(--acai);
  display: inline-block;
}
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { color: var(--lavender); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .75rem;
  color: var(--lavender);
  font-size: .88rem;
}
.footer-contact li svg {
  width: 17px; height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--acai-light);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  border-top: 1px solid rgba(123,45,142,.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { color: var(--lavender); font-size: .83rem; }

/* ===================== WHATSAPP FLOAT ===================== */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 998;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.55);
  animation: pulse-green 2.5s infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* Tooltip */
.wa-float::before {
  content: 'Peça Agora!';
  position: absolute;
  right: 70px;
  background: #25D366;
  color: white;
  font-size: .8rem;
  font-weight: 700;
  padding: .4rem .85rem;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.wa-float:hover::before { opacity: 1; }

/* ===================== TOAST ===================== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: #1a7a3c;
  color: white;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .92rem;
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  transition: transform .45s cubic-bezier(.175,.885,.32,1.275);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sobre-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta.desktop { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 2rem 0 4rem; }
  .hero-visual { order: -1; }
  .hero-logo-ring { width: 210px; height: 210px; }
  .hero-desc { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }

  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-badge { right: 0; }
  .sobre-img { height: 320px; }

  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section-padding { padding: 3.5rem 0; }
  .produtos-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .produto-img-wrap { height: 160px; }
  .sobre-stats { gap: .7rem; }
  .sobre-stat .num { font-size: 1.5rem; }
  .hero-stats { gap: 1.5rem; }
  .form-card { padding: 1.6rem 1.1rem; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .benefit-card { padding: 1.4rem 1rem; }
  .dep-grid { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
}
