/* =============================================
   É DRINK — Landing Page
   ============================================= */

/* ---- PROOF BAR ---- */
.proof-bar {
  background: var(--dark);
  padding: 9px 0;
  overflow: hidden;
}
.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.proof-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.proof-bar__item svg { opacity: 0.7; flex-shrink: 0; }
.proof-bar__dot {
  color: rgba(255,255,255,0.25);
  font-size: 1rem;
}
@media (max-width: 600px) {
  .proof-bar__inner { gap: 4px 12px; }
  .proof-bar__dot { display: none; }
  .proof-bar__item { font-size: 0.7rem; }
}

/* ---- REDIRECT NOTICE ---- */
.redirect-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--orange-bg);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 20px 0 24px;
}
.redirect-notice svg {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.redirect-notice p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
}
.redirect-notice p strong { color: var(--dark); }

/* ---- MOBILE CTA LINK ---- */
.mobile-link--cta {
  color: var(--orange) !important;
  font-weight: 700;
}

/* ---- PERFIL IDEAL ---- */
.perfil-ideal {
  padding: 80px 0;
  background: var(--bg-alt);
}
.perfil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 40px 0 32px;
}
.perfil-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.perfil-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--purple-light);
}
.perfil-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}
.perfil-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.perfil-card p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
}
.perfil-nao {
  background: var(--orange-bg);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
}
.perfil-nao p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.perfil-nao strong { color: var(--orange-dark); }

/* ---- ORIGEM ---- */
.origem {
  padding: 80px 0;
  background: var(--dark);
  color: var(--white);
}
.origem__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}
.origem__label .eyebrow { color: var(--orange-light); }
.origem__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}
.origem__content p {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 16px;
}
.origem__content p strong { color: var(--white); }
.origem__fundadores {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.fundador {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fundador__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.fundador__avatar--jessica { background: linear-gradient(135deg, var(--purple), var(--purple-light)); }
.fundador__avatar--joao    { background: linear-gradient(135deg, var(--orange-dark), var(--orange)); }
.fundador strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.fundador span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 768px) {
  .origem__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ---- URGÊNCIA BANNER ---- */
.urgencia-banner {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-lg);
}
.urgencia-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.urgencia-banner__icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.urgencia-banner__inner > div {
  flex: 1;
  min-width: 200px;
}
.urgencia-banner__inner strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.urgencia-banner__inner p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
@media (max-width: 600px) {
  .urgencia-banner { padding: 20px; }
  .urgencia-banner__inner { gap: 16px; }
  .urgencia-banner__inner .btn { width: 100%; justify-content: center; }
}

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

:root {
  --purple:        #6B21C8;
  --purple-mid:    #7C3AED;
  --purple-light:  #A855F7;
  --purple-dark:   #4C1D95;
  --purple-bg:     #F5F0FF;
  --purple-bg2:    #EDE9FE;
  --orange:        #F97316;
  --orange-light:  #FB923C;
  --orange-dark:   #EA580C;
  --orange-bg:     #FFF7ED;
  --dark:          #1C1033;
  --text:          #2D1B5E;
  --text-2:        #5B4E7E;
  --text-3:        #9589B0;
  --white:         #FFFFFF;
  --bg:            #FFFFFF;
  --bg-alt:        #FAF8FF;
  --bg-warm:       #FFF9F5;
  --border:        rgba(107, 33, 200, 0.13);
  --border-light:  rgba(107, 33, 200, 0.07);
  --radius:        14px;
  --radius-lg:     22px;
  --shadow-sm:     0 2px 14px rgba(107, 33, 200, 0.07);
  --shadow:        0 6px 28px rgba(107, 33, 200, 0.12);
  --shadow-lg:     0 16px 56px rgba(107, 33, 200, 0.2);
  --shadow-orange: 0 6px 28px rgba(249, 115, 22, 0.32);
  --transition:    0.3s ease;
}

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(249, 115, 22, 0.48);
}
.btn--ghost {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn--ghost:hover {
  background: var(--purple-bg);
}
.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn--outline:hover {
  background: var(--orange);
  color: var(--white);
}
.btn--nav {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  padding: 11px 26px;
  font-size: 0.9rem;
  box-shadow: 0 3px 14px rgba(249,115,22,0.3);
}
.btn--nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}
.btn--full { width: 100%; }

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-header h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--dark);
}
.section-header p {
  color: var(--text-2);
  font-size: 1.1rem;
  line-height: 1.75;
}

.badge {
  display: inline-block;
  background: var(--orange-bg);
  border: 1px solid rgba(249, 115, 22, 0.28);
  color: var(--orange-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* ---- ANIMATIONS ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(107,33,200,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 38px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
  display: block;
  transition: opacity var(--transition);
}
.nav__logo-img:hover { opacity: 0.85; }
.footer__logo-link .nav__logo-img {
  height: 46px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--purple); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--white);
  padding: 100px 32px 40px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 75% at 100% 45%, var(--purple-bg) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 5% 95%, var(--orange-bg) 0%, transparent 60%),
    var(--bg);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  color: var(--dark);
}
.hero__content h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero__content p {
  color: var(--text-2);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
}
.stat span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat__divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* BRAND VISUAL — logo + totem side by side */
.hero__brand-visual {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
.hero__brand-logo { display: none; }

/* TOTEM VISUAL */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__totem { position: relative; }
.totem-card {
  width: 200px;
  height: 420px;
  background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 32px 20px;
  box-shadow: 0 24px 80px rgba(107,33,200,0.35), 0 4px 20px rgba(249,115,22,0.12);
  position: relative;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.totem-neon {
  font-size: 1.6rem;
  font-weight: 900;
  font-style: italic;
  color: #F97316;
  text-shadow: 0 0 20px rgba(249,115,22,0.8), 0 0 40px rgba(249,115,22,0.4);
  animation: neon-pulse 2s ease-in-out infinite;
}
.totem-neon span { color: #FFFFFF; text-shadow: 0 0 20px rgba(255,255,255,0.6); }
@keyframes neon-pulse {
  0%, 100% { text-shadow: 0 0 20px rgba(249,115,22,0.8), 0 0 40px rgba(249,115,22,0.4); }
  50%       { text-shadow: 0 0 30px rgba(249,115,22,1), 0 0 60px rgba(249,115,22,0.6); }
}
.totem-taps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 0 16px;
}
.tap {
  height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.tap::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 30%;
  height: 100%;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fade-bounce 2s ease-in-out infinite;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-3);
  border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg);
}
@keyframes fade-bounce {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* ---- SOLUÇÃO ---- */
.solucao {
  padding: 100px 0;
  background: var(--bg-alt);
}
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.problem-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.problem-icon { display: none; }
.problem-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--dark);
}
.problem-card p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
}
.problem-arrow {
  font-size: 1.5rem;
  color: var(--orange);
  margin: 22px 0;
  text-align: center;
}
.solution-tag {
  background: var(--purple-bg);
  border: 1px solid rgba(107,33,200,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--purple);
  line-height: 1.5;
}
.solucao-destaque {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
}
.solucao-destaque__inner h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--white);
}
.solucao-destaque__inner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ---- MODELOS ---- */
.modelos {
  padding: 100px 0;
  background: var(--bg);
}
.modelos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.modelo-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.modelo-card:hover {
  border-color: var(--purple-mid);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.modelo-card--featured {
  background: linear-gradient(160deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
  border-color: var(--purple);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}
.modelo-card--featured .modelo-desc { color: rgba(255,255,255,0.96); }
.modelo-card--featured .modelo-lista li { color: rgba(255,255,255,0.96); }
.modelo-card--featured .modelo-lista li::before { color: var(--orange-light); }
.modelo-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--shadow-orange);
}
.modelo-icon { display: none; }
.modelo-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.modelo-desc {
  color: var(--text-2);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.modelo-lista {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.modelo-lista li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-2);
}
.modelo-lista li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- COMO FUNCIONA ---- */
.como-funciona {
  padding: 100px 0;
  background: var(--bg-alt);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step--highlight {
  background: linear-gradient(160deg, var(--purple-dark), var(--purple-mid));
  border-color: var(--purple);
  color: var(--white);
}
.step__num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--purple-bg2);
  line-height: 1;
  margin-bottom: 14px;
}
.step--highlight .step__num { color: rgba(255,255,255,0.4); }
.step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.step--highlight h4 { color: #FFFFFF; font-weight: 800; }
.step p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}
.step--highlight p { color: #FFFFFF; opacity: 0.95; }

/* ---- TOTENS ---- */
.totens {
  padding: 100px 0;
  background: var(--bg);
}
.totens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.totem-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.totem-item:hover {
  border-color: var(--purple-mid);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.totem-item--featured {
  background: var(--white);
  border-color: var(--purple);
  border-top-width: 4px;
  box-shadow: var(--shadow);
}
.totem-item--featured h3 { color: var(--purple-dark); font-weight: 800; }
.totem-item--featured p { color: var(--text-2); opacity: 1; }
.totem-visual {
  width: 120px;
  height: 240px;
  margin: 0 auto 28px;
  background: linear-gradient(160deg, var(--purple-dark), var(--purple-mid));
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 20px 14px;
  box-shadow: 0 8px 32px rgba(107,33,200,0.3);
}
.totem-visual--table {
  width: 140px;
  height: 130px;
  border-radius: 12px;
  margin-bottom: 28px;
}
.totem-neon-mini {
  font-size: 1rem;
  font-weight: 900;
  font-style: italic;
  color: #F97316;
  text-shadow: 0 0 12px rgba(249,115,22,0.8);
}
.totem-neon-mini span { color: #fff; }
.totem-neon-mini--small { font-size: 0.75rem; }
.totem-taps-mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.tap-mini {
  height: 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}
.tap-mini--small { height: 12px; }
.tap--red   { background: rgba(255,120,120,0.3); }
.tap--green { background: rgba(120,255,120,0.3); }
.tap--orange { background: rgba(255,190,80,0.3); }
.totem-item h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.totem-item p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 20px;
}
.totem-tag {
  display: inline-block;
  background: var(--purple-bg);
  border: 1px solid var(--border);
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.totem-tag--featured {
  background: var(--purple-bg);
  border-color: var(--border);
  color: var(--purple);
}

/* ---- DRINKS ---- */
.drinks {
  padding: 100px 0;
  background: var(--bg-alt);
}

/* Featured 4 drinks */
.drinks-featured {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.drink-featured-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.drink-featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-mid);
}
.drink-featured-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5efe4;
}
.drink-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.drink-featured-card:hover .drink-featured-img img { transform: scale(1.06); }
.drink-featured-info {
  padding: 20px 22px 24px;
  border-top: 1px solid var(--border-light);
}
.drink-featured-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

/* Submenu divider */
.drinks-submenu-title {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.drinks-submenu-title::before,
.drinks-submenu-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.drinks-submenu-title span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

/* Full 12-drink grid */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.drink-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.drink-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249,115,22,0.4);
  box-shadow: 0 10px 36px rgba(249,115,22,0.14);
}
.drink-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5efe4;
}
.drink-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.drink-card:hover .drink-img { transform: scale(1.06); }
.drink-info {
  padding: 13px 12px 16px;
}
.drink-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
  color: var(--dark);
}
.drink-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-3);
  background: var(--bg-alt);
  padding: 4px 9px;
  border-radius: 50px;
  border: 1px solid var(--border-light);
}
.drink-badge--only {
  color: var(--orange-dark);
  background: var(--orange-bg);
  border-color: rgba(249,115,22,0.2);
}

/* ---- LOJA: CATÁLOGO ---- */
.loja-catalogo {
  padding: 100px 0;
  background: var(--bg-alt);
}
.loja-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.loja-grid--compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.loja-skeleton {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-3);
  padding: 40px;
}

.loja-kit-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.loja-kit-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple-mid);
  box-shadow: var(--shadow-lg);
}
.loja-kit-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}
.loja-kit-card p {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
}
.loja-preco {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--purple-dark);
}

.loja-item-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition);
}
.loja-item-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,0.4);
}
.loja-item-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5efe4;
}
.loja-item-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.loja-item-card__img--placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; background: var(--purple-bg);
}
.loja-item-card__body { padding: 13px 12px 16px; display: flex; flex-direction: column; gap: 8px; }
.loja-item-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--dark); }

.qty-stepper {
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.qty-stepper button {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--bg-alt);
  color: var(--purple-dark); font-weight: 800; font-size: 1rem;
  cursor: pointer; line-height: 1;
}
.qty-stepper button:hover { border-color: var(--purple-mid); }
.qty-stepper span { min-width: 18px; font-weight: 700; }

/* ---- LOJA: CARRINHO ---- */
.loja-carrinho { padding: 80px 0; background: var(--bg); }
.carrinho-vazio {
  text-align: center; color: var(--text-3); padding: 32px;
  border: 1.5px dashed var(--border); border-radius: var(--radius-lg);
}
.carrinho-caixa {
  max-width: 640px; margin: 0 auto; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
}
.carrinho-itens { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.carrinho-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--border-light);
}
.carrinho-item__nome { font-weight: 700; color: var(--dark); font-size: 0.94rem; }
.carrinho-item__sub { font-size: 0.8rem; color: var(--text-3); }
.carrinho-item__remove {
  background: none; border: none; color: var(--text-3); cursor: pointer;
  font-size: 0.78rem; text-decoration: underline; margin-left: 8px;
}
.carrinho-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; margin-bottom: 20px; border-top: 1.5px solid var(--border);
  font-size: 1.1rem;
}
.carrinho-total strong { font-size: 1.5rem; color: var(--purple-dark); }
.checkout-form { border-top: 1.5px solid var(--border-light); padding-top: 20px; }
.checkout-erro {
  color: var(--orange-dark); background: var(--orange-bg);
  border: 1px solid rgba(249,115,22,0.25); border-radius: var(--radius);
  padding: 12px 14px; font-size: 0.85rem; margin-top: 14px; text-align: center;
}

/* ---- LOJA: STATUS DO PEDIDO ---- */
.pedido-status { padding: 32px 0 0; }
.pedido-status__box {
  max-width: 640px; margin: 0 auto; display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px 26px; box-shadow: var(--shadow);
}
.pedido-status__icon { font-size: 2rem; }
.pedido-status__box h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.pedido-status__box p { font-size: 0.88rem; color: var(--text-2); }
.pedido-status--ok .pedido-status__box { border-color: #86EFAC; background: #F0FDF4; }
.pedido-status--erro .pedido-status__box { border-color: rgba(249,115,22,0.4); background: var(--orange-bg); }

/* ---- INVESTIMENTO ---- */
.investimento {
  padding: 100px 0;
  background: var(--bg);
}
.invest-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.invest-table {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.invest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid var(--border-light);
}
.invest-row--total {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid));
  border-bottom: none;
}
.invest-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-2);
}
.invest-row--total .invest-label {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
}
.invest-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
}
.invest-row--total .invest-value {
  font-size: 1.55rem;
  color: var(--orange-light);
}
.invest-obs {
  padding: 16px 32px;
  font-size: 0.8rem;
  color: var(--text-3);
  text-align: center;
  border-top: 1px solid var(--border-light);
}
.invest-benefits h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--dark);
}
.invest-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.invest-benefits li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--purple-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.invest-benefits li strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--dark);
}
.invest-benefits li span {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ---- CONTATO ---- */
.contato {
  padding: 100px 0;
  background: var(--bg-alt);
}
.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contato-layout--single {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.contato-layout--single .contato-canais {
  align-items: stretch;
}
.contato-info h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
  color: var(--dark);
}
.contato-info p {
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 36px;
  font-size: 1rem;
}
.contato-canais {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.canal {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.canal:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.canal--whatsapp:hover { border-color: #25D366; }
.canal--instagram:hover { border-color: #E1306C; }
.canal--web:hover { border-color: var(--purple-mid); }
.canal-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.canal--whatsapp .canal-icon { background: #25D366; color: white; }
.canal--instagram .canal-icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.canal--web .canal-icon { background: var(--purple); color: white; }
.canal-icon svg { width: 20px; height: 20px; }
.canal strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--dark);
}
.canal span { font-size: 0.88rem; color: var(--text-2); }

/* FORM */
.contato-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}
.contato-form h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--dark);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 18px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.form-group input::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--purple);
  background: var(--white);
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239589B0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  background-color: var(--bg-alt);
}
.form-group select option { background: var(--white); color: var(--text); }
.form-obs {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: 14px;
}
.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px;
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: #166534;
  text-align: center;
  font-weight: 600;
}
.form-success.visible { display: block; }

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  color: var(--white);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand p {
  color: rgba(255,255,255,0.48);
  font-size: 0.92rem;
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.75;
}
.footer__links h4,
.footer__contact h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.38);
  margin-bottom: 18px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__contact p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 8px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer__bottom p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.32);
  text-align: center;
}

/* ---- SOBRE HERO ---- */
.sobre-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.sobre-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 100% 45%, var(--purple-bg) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 0% 95%, var(--orange-bg) 0%, transparent 60%),
    var(--bg);
}
.sobre-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sobre-hero__content h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  color: var(--dark);
}
.sobre-hero__content h1 em {
  font-style: normal;
  color: var(--orange);
}
.sobre-hero__content p {
  color: var(--text-2);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 520px;
}
.sobre-hero__visual { display: flex; flex-direction: column; align-items: center; gap: 36px; }
.sobre-hero__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 28px rgba(249,115,22,.25), 0 16px 48px rgba(249,115,22,.12);
  animation: logo-glow 3s ease-in-out infinite;
}
.sobre-hero__logo { width: 200px; height: auto; object-fit: contain; display: block; }
.sobre-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}
.sobre-stat {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.sobre-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 4px;
}
.sobre-stat span { font-size: 0.78rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---- SOBRE ORIGEM ---- */
.sobre-origem { padding: 100px 0; background: var(--bg-alt); }
.sobre-origem__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.sobre-origem__text p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 18px;
}
.sobre-origem__text p strong { color: var(--dark); }
.sobre-origem__quote blockquote {
  background: linear-gradient(160deg, var(--purple-dark), var(--purple-mid));
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.sobre-origem__quote blockquote p {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.sobre-origem__quote cite {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  font-style: normal;
}
.blockquote--jessica {
  background: linear-gradient(160deg, #7a3800, var(--orange));
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  margin-top: 24px;
}
.blockquote--jessica p {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.blockquote--jessica cite {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  font-style: normal;
}

/* ---- TIMELINE ---- */
.sobre-timeline { padding: 100px 0; background: var(--bg); }
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: start;
  padding: 0 0 48px;
  position: relative;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: 93px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 3px solid var(--purple);
  border-radius: 50%;
  z-index: 1;
}
.timeline__item--featured::before { background: var(--orange); border-color: var(--orange); }
.timeline__year {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 4px;
  text-align: right;
  padding-right: 20px;
}
.timeline__item--featured .timeline__year { color: var(--orange); }
.timeline__content {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.timeline__item--featured .timeline__content {
  border-color: var(--orange);
  box-shadow: 0 6px 28px rgba(249,115,22,0.14);
}
.timeline__content h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.timeline__content p { font-size: 0.95rem; color: var(--text-2); line-height: 1.75; }
.timeline__content p strong { color: var(--dark); }
.timeline__content p em { font-style: italic; color: var(--text-2); }

/* ---- FUNDADORES ---- */
.fundadores { padding: 100px 0; background: var(--bg-alt); }
.fundadores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fundador-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fundador-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.fundador-card--featured {
  background: var(--white);
  border-color: var(--purple);
  border-left-width: 5px;
  box-shadow: var(--shadow);
}
.fundador-card--featured h3 { color: var(--purple-dark); }
.fundador-card--featured .fundador-card__role { color: var(--orange); }
.fundador-card--featured p { color: var(--text-2); }
.fundador-card--featured p em { color: var(--text-2); }
.fundador-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--purple-bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 20px;
}
.fundador-card__avatar--featured {
  background: var(--purple-bg);
  border-color: var(--border);
  color: var(--purple);
}
.fundador-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.fundador-card__role { display: inline-block; font-size: 0.78rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.fundador-card p { font-size: 0.92rem; color: var(--text-2); line-height: 1.75; }
.fundador-card p em { color: var(--text-2); }

/* ---- VISÃO DE FUTURO ---- */
.sobre-visao { padding: 100px 0; background: var(--bg); }
.visao-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.visao-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.visao-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--purple-mid); }
.visao-card--large {
  grid-column: span 2;
  background: var(--white);
  border-color: var(--orange);
  border-left-width: 6px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.visao-card--large h3 { color: var(--dark); font-size: 1.3rem; letter-spacing: -0.02em; }
.visao-card--large p { color: var(--text-2); font-size: 1rem; }
.visao-card__icon { font-size: 2.2rem; margin-bottom: 16px; }
.visao-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.visao-card p { font-size: 0.92rem; color: var(--text-2); line-height: 1.75; }

/* ---- SOBRE VALORES ---- */
.sobre-valores { padding: 100px 0; background: var(--bg-alt); }
.sobre-valores__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sobre-valores__texto h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--dark); margin-bottom: 16px; line-height: 1.2; }
.sobre-valores__texto p { font-size: 1rem; color: var(--text-2); line-height: 1.8; margin-bottom: 32px; }
.sobre-valores__cards { display: flex; flex-direction: column; gap: 18px; }
.valor-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.valor-item__icon { font-size: 1.6rem; flex-shrink: 0; }
.valor-item h4 { font-size: 0.95rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.valor-item p { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; }

/* ---- EVENTOS — TIPOS ---- */
.evento-tipos { padding: 100px 0; background: var(--bg-alt); }
.tipos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tipo-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.tipo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--purple-mid); }
.tipo-card--featured {
  background: var(--white);
  border-color: var(--orange);
  border-left-width: 5px;
  box-shadow: var(--shadow);
}
.tipo-card--featured h3 { color: var(--orange-dark); }
.tipo-card--featured p { color: var(--text-2); }
.tipo-card--featured .tipo-lista li { color: var(--text-2); }
.tipo-card--featured .tipo-lista li::before { color: var(--orange); }
.tipo-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.tipo-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; color: var(--dark); }
.tipo-card p { font-size: 0.9rem; color: var(--text-2); line-height: 1.7; margin-bottom: 18px; }
.tipo-lista { display: flex; flex-direction: column; gap: 8px; }
.tipo-lista li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.5;
}
.tipo-lista li::before { content: '✓'; color: var(--orange); font-weight: 900; flex-shrink: 0; margin-top: 1px; }

/* ---- COMPARATIVO ---- */
.vantagens-evento { padding: 100px 0; background: var(--bg); }
.comparativo { max-width: 900px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1.5px solid var(--border); }
.comparativo__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--dark);
  padding: 18px 24px;
}
.comparativo__col-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 8px 12px;
  border-radius: var(--radius);
}
.comparativo__col-title--bad { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }
.comparativo__col-title--good { background: var(--orange); color: white; }
.comparativo__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-light);
  background: var(--white);
}
.comparativo__row:last-child { border-bottom: none; }
.comparativo__row:nth-child(even) { background: var(--bg-alt); }
.comparativo__label {
  padding: 18px 24px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--border-light);
}
.comparativo__val {
  padding: 18px 20px;
  font-size: 0.88rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.comparativo__val--bad {
  border-right: 1px solid var(--border-light);
  color: var(--text-3);
}
.comparativo__val--bad::before { content: '✗'; color: #EF4444; font-weight: 900; margin-right: 8px; flex-shrink: 0; }
.comparativo__val--good { color: var(--dark); font-weight: 600; }
.comparativo__val--good::before { content: '✓'; color: var(--orange); font-weight: 900; margin-right: 8px; flex-shrink: 0; }

/* ---- EVENTO DESTAQUES (orcamento info) ---- */
.evento-destaques { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.evento-destaque { display: flex; align-items: center; gap: 12px; }
.evento-destaque__icon { font-size: 1.1rem; flex-shrink: 0; }
.evento-destaque p { font-size: 0.95rem; color: var(--text-2); margin: 0; }

/* ---- NAV ACTIVE STATE ---- */
.nav__active {
  color: var(--purple) !important;
  font-weight: 700 !important;
}

/* ---- CROSS-LINKS (index) ---- */
.cross-links {
  padding: 100px 0;
  background: var(--bg);
}
.cross-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cross-link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
}
.cross-link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-mid);
}
.cross-link--featured {
  background: var(--white);
  border-color: var(--orange);
  border-left-width: 5px;
  box-shadow: var(--shadow);
}
.cross-link--featured .cross-link__body h3 { color: var(--dark); }
.cross-link--featured .cross-link__body p { color: var(--text-2); }
.cross-link--featured .cross-link__cta { color: var(--orange-dark); }
.cross-link__body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.cross-link--featured .cross-link__body h3 { color: var(--white); }
.cross-link__body p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.cross-link__cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--purple);
  margin-top: auto;
}

/* ---- STEPS HORIZONTAL (restaurante) ---- */
.steps-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step-h {
  flex: 1;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.step-h__num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.step-h__icon { display: none; }
.step-h h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.step-h p { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; }
.step-h__arrow {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 1.8rem;
  color: var(--border);
  align-self: center;
  flex-shrink: 0;
}

/* ---- GANHOS RESTAURANTE ---- */
.ganhos-rest {
  padding: 100px 0;
  background: var(--bg);
}
.ganhos-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}
.ganho-card {
  flex: 1;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.ganho-card--highlight {
  background: var(--white);
  border-color: var(--orange);
  border-left-width: 5px;
  box-shadow: var(--shadow);
}
.ganho-card--highlight p { color: var(--text-2); }
.ganho-seta {
  font-size: 2rem;
  color: var(--border);
  padding: 0 12px;
  flex-shrink: 0;
}
.ganho-icon { display: none; }
.ganho-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.ganho-card--highlight h3 { color: var(--orange-dark); }
.ganho-card p { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; }
.ganhos-destaque {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
}
.ganhos-destaque__item { padding: 0 20px; }
.ganhos-destaque__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.ganhos-destaque__item p { font-size: 0.92rem; color: var(--text-2); line-height: 1.65; }
.ganhos-destaque__divider { width: 1px; height: 80px; background: var(--border); }

/* ---- PARA QUEM É ---- */
.para-quem {
  padding: 80px 0;
  background: var(--bg-alt);
}
.para-quem__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.para-quem__item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.para-quem__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.para-quem__icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.para-quem__item h4 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.para-quem__item p { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; }

/* ---- CROSSLINK BANNER ---- */
.cross-link-banner {
  padding: 80px 0;
  background: var(--purple-bg);
}
.cross-link-banner--alt { background: var(--orange-bg); }
.cross-link-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cross-link-banner__text { max-width: 600px; }
.cross-link-banner__text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.cross-link-banner__text p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.75;
}
.cross-link-banner__inner .btn { flex-shrink: 0; }

/* ---- GANHOS FRANQUIA ---- */
.ganhos-franquia {
  padding: 100px 0;
  background: var(--bg-alt);
}
.ganhos-table-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.ganhos-table {
  width: 100%;
  border-collapse: collapse;
}
.ganhos-table th {
  padding: 18px 28px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  border-bottom: 1.5px solid var(--border);
  background: var(--bg-alt);
}
.th-highlight { color: var(--purple) !important; }
.ganhos-table td {
  padding: 20px 28px;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}
.ganhos-table td strong { display: block; font-weight: 800; color: var(--dark); }
.ganhos-table__sub { font-size: 0.78rem; color: var(--text-3); font-weight: 500; }
.td-highlight {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--purple);
}
.ganhos-table__row--top td { background: var(--purple-bg); }
.ganhos-table__obs {
  padding: 14px 28px;
  font-size: 0.8rem;
  color: var(--text-3);
  border-top: 1px solid var(--border-light);
}
.ganhos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ganho-info-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.ganho-info-card__icon { display: none; }
.ganho-info-card h4 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.ganho-info-card p { font-size: 0.92rem; color: var(--text-2); line-height: 1.7; }

/* ---- OPORTUNIDADE GRID ---- */
.oportunidade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.oportunidade-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
}
.oportunidade-card--mid {
  background: var(--purple-bg);
  border-color: var(--purple-light);
}
.oportunidade-numero {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 14px;
  line-height: 1;
}
.oportunidade-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.oportunidade-card p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ---- PROJEÇÃO DESTAQUE ---- */
.projecao-destaque {
  display: flex;
  align-items: center;
  gap: 48px;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 100%);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  box-shadow: var(--shadow-lg);
  margin-top: 16px;
}
.projecao-destaque__content { flex: 1; }
.projecao-destaque__content .eyebrow { color: rgba(255,255,255,0.6); }
.projecao-destaque__content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  margin: 14px 0 12px;
}
.projecao-destaque__content h3 strong { color: #FFD166; }
.projecao-destaque__content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}
.projecao-destaque__numero {
  flex-shrink: 0;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 48px;
}
.projecao-destaque__val {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: #FFD166;
  line-height: 1;
  margin-bottom: 10px;
}
.projecao-destaque__sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .oportunidade-grid { grid-template-columns: 1fr; }
  .projecao-destaque { flex-direction: column; gap: 32px; padding: 36px 28px; }
  .projecao-destaque__numero { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); padding-left: 0; padding-top: 28px; width: 100%; }
  .projecao-destaque__val { font-size: 2.2rem; }
}

/* ---- SUPORTE ---- */
.suporte {
  padding: 100px 0;
  background: var(--bg);
}
.suporte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.suporte-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.suporte-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.suporte-card__icon { font-size: 2.4rem; margin-bottom: 18px; }
.suporte-card h3 { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.suporte-card p { font-size: 0.95rem; color: var(--text-2); line-height: 1.75; }

/* ---- INVESTMENT GATE ---- */
.invest-gated-wrapper { position: relative; }
.invest-table--blurred {
  filter: blur(7px);
  pointer-events: none;
  user-select: none;
}
.invest-gate-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250,248,255,0.75);
  backdrop-filter: blur(2px);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.invest-gate__content {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.invest-gate__lock { font-size: 2.4rem; display: block; margin-bottom: 14px; }
.invest-gate__content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.invest-gate__content p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 24px;
}
.invest-gate__form { display: flex; flex-direction: column; gap: 10px; }
.invest-gate__form input {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color var(--transition);
}
.invest-gate__form input:focus { border-color: var(--purple); background: var(--white); }
.invest-gate__form input::placeholder { color: var(--text-3); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .drinks-grid       { grid-template-columns: repeat(3, 1fr); }
  .drinks-featured   { grid-template-columns: repeat(2, 1fr); }
  .loja-grid         { grid-template-columns: repeat(2, 1fr); }
  .loja-grid--compact { grid-template-columns: repeat(3, 1fr); }
  .steps             { grid-template-columns: repeat(2, 1fr); }
  .cross-links__grid { grid-template-columns: 1fr; }
  .ganhos-cards      { grid-template-columns: 1fr 1fr; }
  .para-quem__grid   { grid-template-columns: repeat(2, 1fr); }
  .suporte-grid      { grid-template-columns: 1fr 1fr; }
  .tipos-grid        { grid-template-columns: repeat(2, 1fr); }
  .visao-grid        { grid-template-columns: 1fr; }
  .visao-card--large { grid-column: span 1; flex-direction: column; }
  .fundadores-grid   { grid-template-columns: 1fr 1fr; }
  .sobre-hero__inner { grid-template-columns: 1fr; }
  .sobre-origem__grid { grid-template-columns: 1fr; }
  .sobre-valores__inner { grid-template-columns: 1fr; }
  .comparativo__row,
  .comparativo__header { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__inner       { grid-template-columns: 1fr; }
  .hero__visual      { display: none; }
  .hero__content h1  { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .hero__content p   { max-width: 100%; }

  .problems-grid     { grid-template-columns: 1fr; }
  .modelos-grid      { grid-template-columns: 1fr; }
  .totens-grid       { grid-template-columns: 1fr; }
  .drinks-featured   { grid-template-columns: repeat(2, 1fr); }
  .drinks-grid       { grid-template-columns: repeat(2, 1fr); }
  .loja-grid         { grid-template-columns: 1fr; }
  .loja-grid--compact { grid-template-columns: repeat(2, 1fr); }
  .steps             { grid-template-columns: 1fr 1fr; }
  .invest-layout     { grid-template-columns: 1fr; }
  .contato-layout    { grid-template-columns: 1fr; }
  .footer__inner     { grid-template-columns: 1fr; gap: 32px; }
  .ganhos-cards      { grid-template-columns: 1fr; }
  .suporte-grid      { grid-template-columns: 1fr; }
  .para-quem__grid   { grid-template-columns: 1fr 1fr; }
  .ganhos-destaque   { grid-template-columns: 1fr; }
  .ganhos-destaque__divider { width: 100%; height: 1px; margin: 8px 0; }
  .cross-link-banner__inner { flex-direction: column; }
  .tipos-grid        { grid-template-columns: 1fr 1fr; }
  .fundadores-grid   { grid-template-columns: 1fr; }
  .sobre-stats       { grid-template-columns: 1fr 1fr; }
  .comparativo__label { padding: 14px 16px; font-size: 0.85rem; }
  .comparativo__val  { padding: 14px 14px; font-size: 0.82rem; }

  .steps-horizontal  { flex-direction: column; }
  .step-h__arrow     { transform: rotate(90deg); align-self: center; }
  .ganhos-grid       { flex-direction: column; }
  .ganho-seta        { transform: rotate(90deg); align-self: center; }

  .section-header    { margin-bottom: 48px; }
  .solucao-destaque  { padding: 40px 28px; }
  .contato-form      { padding: 32px; }
  .timeline::before  { left: 80px; }
  .timeline__item    { grid-template-columns: 80px 1fr; gap: 20px; }
  .timeline__item::before { left: 73px; }
}

@media (max-width: 480px) {
  .drinks-featured   { grid-template-columns: 1fr 1fr; }
  .drinks-grid       { grid-template-columns: repeat(2, 1fr); }
  .steps             { grid-template-columns: 1fr; }
  .hero__ctas        { flex-direction: column; }
  .hero__stats       { justify-content: center; }
  .para-quem__grid   { grid-template-columns: 1fr; }
  .ganhos-table      { font-size: 0.85rem; }
  .ganhos-table td,
  .ganhos-table th   { padding: 14px 16px; }
}
