/* ============================================================
   BOMBOM CAIEIRAS — Stylesheet
   Cores: Amarelo #f9c603 | Marrom Escuro #40110e
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Nunito:wght@300;400;600;700;800&display=swap');

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow: #f9c603;
  --yellow-light: #fde87a;
  --yellow-dark: #e0a800;
  --brown: #40110e;
  --brown-mid: #6b2420;
  --brown-light: #c77c50;
  --cream: #fdf6e3;
  --cream-dark: #f5e9c8;
  --white: #ffffff;
  --text-dark: #2c1008;
  --text-mid: #6b3a2a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;

  --radius: 16px;
  --radius-lg: 32px;
  --shadow: 0 8px 32px rgba(64, 17, 14, 0.12);
  --shadow-lg: 0 20px 60px rgba(64, 17, 14, 0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

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

/* ---------- UTILITY ---------- */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-mid);
  background: var(--yellow-light);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--brown);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brown);
  color: var(--yellow);
}
.btn-primary:hover { background: var(--brown-mid); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5d; }

.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--yellow); }

/* ---------- HEADER ---------- */
.site-header {
  background: var(--yellow);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--yellow-dark);
  box-shadow: 0 2px 16px rgba(64,17,14,0.10);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(64,17,14,0.20));
  transition: transform 0.3s ease;
}

.header-logo:hover { transform: scale(1.04); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  font-weight: 700;
  color: var(--brown);
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.header-nav a:hover { opacity: 1; text-decoration: underline; }

.header-cta {
  background: var(--brown);
  color: var(--yellow) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.header-cta:hover { background: var(--brown-mid); transform: translateY(-1px); text-decoration: none !important; }

/* ---------- HERO (página única) ---------- */
.hero {
  position: relative;
  background: var(--yellow);
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
}

/* organic blobs */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(64,17,14,0.10) 0%, transparent 70%);
  top: -120px; right: -140px;
}
.hero::after {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(64,17,14,0.08) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}

/* hero-page: container que organiza topbar + conteúdo verticalmente */
.hero-page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 60px;
  min-height: 100svh;
  position: relative;
  z-index: 2;
}

/* Topbar com logo e botão, sobre o fundo escuro */
.hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.hero-topbar-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(64,17,14,0.20));
  transition: transform 0.3s ease;
}
.hero-topbar-logo:hover { transform: scale(1.04); }

.hero-topbar-btn {
  padding: 14px 28px;
  font-size: 0.95rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex: 1;
}

/* Instagram button (hero) */
.btn-insta-hero {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.btn-insta-hero:hover { filter: brightness(1.1); }



.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(64,17,14,0.12);
  border: 1px solid rgba(64,17,14,0.25);
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--brown-mid);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(64,17,14,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(64,17,14,0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
}

.hero-emojis {
  font-size: 3.8rem;
  line-height: 1.4;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.hero-tag {
  background: rgba(64,17,14,0.10);
  border: 1px solid rgba(64,17,14,0.18);
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}

/* floating badges on hero card */
.hero-float {
  position: absolute;
  background: var(--yellow);
  color: var(--brown);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  animation: floatBadge 4s ease-in-out infinite;
}
.hero-float:nth-of-type(1) { top: -20px; right: -10px; animation-delay: 0.8s; }
.hero-float:nth-of-type(2) { bottom: -18px; left: -24px; animation-delay: 1.8s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- WAVE DIVIDER ---------- */
.wave-divider {
  display: block;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg { display: block; width: 100%; }

/* ---------- PRODUCTS ---------- */
.products {
  padding: 90px 0;
  background: var(--cream);
}

.products-header { text-align: center; margin-bottom: 60px; }
.products-header .section-subtitle { margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(64,17,14,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.card-tradicional::before { background: var(--yellow); }
.card-fit::before { background: #6abf69; }
.card-power::before { background: #6c3fc3; }

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
}

.product-line {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card-tradicional .product-line { color: var(--yellow-dark); }
.card-fit .product-line { color: #4caf50; }
.card-power .product-line { color: #7b52c8; }

.product-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 14px;
}

.product-items {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-items li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 8px 12px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-items li::before {
  content: '✦';
  font-size: 0.6rem;
  color: var(--yellow-dark);
  flex-shrink: 0;
}

.product-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.card-fit .product-badge { background: #e8f5e9; color: #388e3c; }
.card-power .product-badge { background: #ede7f6; color: #6c3fc3; }

/* ---------- DIFERENCIAIS ---------- */
.diferenciais {
  padding: 90px 0;
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}

.diferenciais::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(64,17,14,0.06) 0%, transparent 70%);
  top: -200px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
}

.diferenciais-header { text-align: center; margin-bottom: 56px; }
.diferenciais-header .section-title { color: var(--brown); }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.diferencial-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.80);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.diferencial-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.80);
}

.diferencial-icon {
  font-size: 3rem;
  margin-bottom: 18px;
  display: block;
}

.diferencial-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 10px;
}

.diferencial-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ---------- FRASE INSTITUCIONAL ---------- */
.frase-institucional {
  padding: 100px 0;
  background: var(--brown);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.frase-institucional::before {
  content: '"';
  position: absolute;
  font-family: var(--font-display);
  font-size: 32rem;
  color: rgba(249,198,3,0.05);
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.frase-inner {
  position: relative;
  z-index: 2;
}

.frase-deco {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 24px;
}

.frase-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--white);
  line-height: 1.5;
  max-width: 780px;
  margin: 0 auto 20px;
}

.frase-text em { color: var(--yellow); font-style: italic; }

.frase-assinatura {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- CTA FINAL ---------- */
.cta-section {
  padding: 90px 0;
  background: var(--cream-dark);
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 12px;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-insta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1rem;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-insta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--brown);
  padding: 48px 0 28px;
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-logo-area img {
  height: 48px;
  width: auto;
  margin-bottom: 10px;
  filter: brightness(10) saturate(0);
  opacity: 0.9;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--yellow);
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-info {
  text-align: center;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  justify-content: center;
}

.footer-artesanal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  letter-spacing: 0.08em;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: transform 0.2s, background 0.2s;
}

.social-btn:hover { transform: scale(1.12); }

.social-btn.wa { background: rgba(37, 211, 102, 0.15); }
.social-btn.wa:hover { background: rgba(37, 211, 102, 0.30); }
.social-btn.ig { background: rgba(225, 48, 108, 0.15); }
.social-btn.ig:hover { background: rgba(225, 48, 108, 0.30); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 20px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .hero-subtitle { margin: 0 auto 28px; }
  .hero-actions { justify-content: center; }
  /* Don't hide the visual, just stack it */
  .hero-visual {
    display: flex;
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .hero-page { padding-top: 16px; padding-bottom: 30px; }
  .hero-topbar { margin-bottom: 16px; }
  .hero-topbar-logo { height: 46px; }
  .hero-topbar-btn { padding: 10px 18px; font-size: 0.8rem; }
  
  .hero-title { font-size: 1.9rem; margin-bottom: 10px; }
  .hero-subtitle { 
    font-size: 0.9rem; 
    line-height: 1.45; 
    margin-bottom: 20px; 
    padding: 0 10px;
    opacity: 0.85;
  }
  
  .hero-actions { gap: 8px; }
  .hero-actions .btn { padding: 12px 24px; font-size: 0.88rem; }
  
  .hero-emojis { font-size: 2.8rem; margin-bottom: 12px; gap: 6px; }
  .hero-card { padding: 20px 18px; transform: scale(0.95); }
  .hero-tag { font-size: 0.7rem; padding: 4px 10px; }
  
  .hero-float:nth-of-type(1) { top: -15px; right: -5px; }
}

