/* ========================================
   DOCCE MANNIA' – Complete Design System
   ======================================== */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Identity Tokens */
  --brand-amarelo: #E3D64A;
  --brand-manteiga: #9A5311;
  --brand-escuro: #3D1E15;
  --brand-azul: #B2D1EE;
  --brand-creme: #FFF9CC;
  --brand-branco: #FFFFFF;
  --brand-laranja: #C46A1F;
  --brand-medio: #7A3B0A;

  /* Re-mapping internal styling variables to use Brand Tokens */
  --cream: var(--brand-creme);
  --cream-warm: var(--brand-azul);
  /* Contrast / Alternative background */
  --white: var(--brand-branco);

  --peanut-50: #FFFDF2;
  --peanut-100: var(--brand-creme);
  --peanut-200: var(--brand-amarelo);
  --peanut-300: var(--brand-laranja);
  --peanut-400: var(--brand-laranja);
  --peanut-500: var(--brand-manteiga);
  --peanut-600: var(--brand-manteiga);
  --peanut-700: var(--brand-medio);
  --peanut-800: var(--brand-escuro);
  --peanut-900: var(--brand-escuro);

  --brown-900: var(--brand-escuro);
  --brown-800: var(--brand-medio);
  --brown-700: var(--brand-escuro);

  --amber-50: #FFFDF2;
  --amber-100: var(--brand-creme);
  --amber-200: var(--brand-amarelo);
  --amber-400: var(--brand-amarelo);
  --amber-600: var(--brand-laranja);
  --amber-800: var(--brand-manteiga);

  --success: #2E7D32;
  --success-bg: #E8F5E9;

  /* Gradients */
  --grad-hero: linear-gradient(160deg, var(--brand-amarelo) 0%, #F5EC76 100%);
  --grad-warm: linear-gradient(135deg, var(--brand-manteiga) 0%, var(--brand-laranja) 100%);
  --grad-gold: linear-gradient(135deg, var(--brand-amarelo) 0%, var(--brand-laranja) 50%, var(--brand-manteiga) 100%);
  --grad-dark: linear-gradient(135deg, var(--brand-escuro) 0%, var(--brand-medio) 100%);
  --grad-section: linear-gradient(180deg, var(--brand-branco) 0%, var(--brand-creme) 100%);
  --grad-cta: linear-gradient(135deg, var(--brand-manteiga) 0%, var(--brand-laranja) 50%, var(--brand-amarelo) 100%);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 6px;
  --r-xl: 8px;
  --r-2xl: 12px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(26, 14, 7, 0.04);
  --shadow-sm: 0 2px 8px rgba(26, 14, 7, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 14, 7, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 14, 7, 0.1);
  --shadow-xl: 0 16px 48px rgba(26, 14, 7, 0.14);
  --shadow-glow: 0 0 40px rgba(154, 83, 17, 0.35);
  --shadow-card: 0 4px 24px rgba(26, 14, 7, 0.06);

  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s var(--ease-out);
  --t-base: 0.35s var(--ease-out);
  --t-slow: 0.6s var(--ease-out);

  /* Layout */
  --max-w: 1200px;
  --max-w-narrow: 900px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--peanut-800);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--peanut-900);
}

/* ---------- Reusable ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section-padding {
  padding: var(--sp-24) 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peanut-500);
  margin-bottom: var(--sp-3);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--grad-gold);
  border-radius: var(--r-full);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: var(--sp-6);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--peanut-700);
  max-width: 620px;
  line-height: 1.8;
  opacity: 0.8;
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.section-header .section-subtitle {
  margin-inline: auto;
}

.section-header .section-label::before {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--t-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-manteiga);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(154, 83, 17, 0.35);
}

.btn-primary:hover {
  background: var(--brand-laranja);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(154, 83, 17, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--peanut-600);
  border: 2px solid var(--peanut-200);
}

.btn-secondary:hover {
  border-color: var(--peanut-400);
  background: var(--peanut-50);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  border-color: var(--amber-400);
  color: var(--amber-400);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--peanut-900);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--peanut-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

.reveal-d4 {
  transition-delay: 0.4s;
}

.reveal-d5 {
  transition-delay: 0.5s;
}

/* ========================================
   1. NAVBAR
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--sp-4) 0;
  background: url('https://project--14130974-6d40-4eab-8f4a-ea80c25678ab.lovable.app/__l5e/assets-v1/25ab54a6-6b34-4bda-b108-61e9e614dbd9/bg-menu.png') center/cover no-repeat;
  border-bottom: 1px solid rgba(154, 83, 17, 0.08);
  box-shadow: 0 1px 15px rgba(61, 30, 21, 0.05);
  transition: padding var(--t-base), background var(--t-base), box-shadow var(--t-base);
}

.navbar.scrolled {
  background: url('https://project--14130974-6d40-4eab-8f4a-ea80c25678ab.lovable.app/__l5e/assets-v1/25ab54a6-6b34-4bda-b108-61e9e614dbd9/bg-menu.png') center/cover no-repeat;
  padding: var(--sp-3) 0;
  box-shadow: 0 4px 20px rgba(61, 30, 21, 0.08);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 100px;
  width: auto;
  display: block;
  transition: height var(--t-base);
}

.navbar .logo-image {
  height: 100px;
}

.navbar.scrolled .logo-image {
  height: 75px;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  position: relative;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--t-fast), background-color var(--t-fast);
}

.navbar.scrolled .nav-link {
  color: #000;
}

.nav-link::after {
  display: none;
}

.nav-link:hover {
  color: #fff;
  background-color: #000;
}

.navbar.scrolled .nav-link:hover {
  color: #fff;
  background-color: #000;
}

.nav-link:hover::after {
  display: none;
}

.nav-cta {
  background: var(--brand-manteiga);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 12px rgba(154, 83, 17, 0.25);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.nav-cta:hover {
  background: var(--brand-laranja);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.nav-cta::after {
  display: none;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--sp-2);
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand-medio);
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}

.navbar.scrolled .nav-toggle span {
  background: var(--brand-medio);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   2. HERO
   ======================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background: url('https://project--14130974-6d40-4eab-8f4a-ea80c25678ab.lovable.app/__l5e/assets-v1/dead1a46-6769-415c-9f35-1d691df64140/banner-hero.png') no-repeat center right / cover;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero::after {
  display: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-block: var(--sp-24);
  width: 100%;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(154, 83, 17, 0.08);
  border: 1px solid rgba(154, 83, 17, 0.18);
  padding: 0.4rem 1.1rem;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-manteiga);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-8);
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--brand-manteiga);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--brand-escuro);
  margin-bottom: var(--sp-6);
  line-height: 1.12;
}

.hero h1 .text-gold {
  background: linear-gradient(135deg, var(--brand-manteiga) 0%, var(--brand-laranja) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--brand-escuro);
  opacity: 0.88;
  line-height: 1.85;
  margin-bottom: var(--sp-10);
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.hero-actions .btn-outline-light {
  border-color: rgba(61, 30, 21, 0.3);
  color: var(--brand-escuro);
}

.hero-actions .btn-outline-light:hover {
  border-color: var(--brand-manteiga);
  color: var(--brand-manteiga);
  background: rgba(154, 83, 17, 0.05);
}

/* Hero Image animations */
@keyframes hero-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

/* Decorative shapes */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 179, 0, 0.06);
  border: 1px solid rgba(255, 179, 0, 0.1);
}

.hero-deco-1 {
  width: 80px;
  height: 80px;
  top: 12%;
  right: 4%;
  animation: hero-float 9s ease-in-out infinite;
}

.hero-deco-2 {
  width: 50px;
  height: 50px;
  bottom: 18%;
  left: 3%;
  animation: hero-float 7s ease-in-out infinite reverse;
}

.hero-deco-3 {
  width: 35px;
  height: 35px;
  top: 35%;
  left: 48%;
  animation: hero-float 5s ease-in-out infinite 1s;
}

/* ========================================
   3. PROPOSTA DE VALOR (Social Proof)
   ======================================== */
.social-proof {
  padding: var(--sp-20) 0;
  background: var(--white);
  border-bottom: 1px solid rgba(176, 110, 46, 0.06);
}

.social-proof .section-header {
  margin-bottom: var(--sp-12);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.proof-card {
  text-align: center;
  padding: var(--sp-10) var(--sp-8);
  border-radius: var(--r-xl);
  background: var(--cream);
  border: 1px solid rgba(176, 110, 46, 0.06);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.proof-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 0 0 var(--r-full) var(--r-full);
}

.proof-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(176, 110, 46, 0.12);
}

.proof-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-4);
}

.proof-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--peanut-900);
}

.proof-card p {
  font-size: 0.92rem;
  color: var(--peanut-700);
  line-height: 1.7;
  opacity: 0.8;
}

/* ========================================
   4. SOBRE A EMPRESA
   ======================================== */
.about {
  padding: var(--sp-24) 0;
  background: var(--grad-section);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
}

.about-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 55%;
  height: 55%;
  background: var(--grad-cta);
  border-radius: var(--r-xl);
  z-index: 0;
  opacity: 0.15;
}

.about-img-badge {
  position: absolute;
  bottom: var(--sp-6);
  left: var(--sp-6);
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-6);
  box-shadow: var(--shadow-md);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.about-img-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--grad-cta);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-img-badge strong {
  font-size: 1.1rem;
  display: block;
  color: var(--peanut-900);
}

.about-img-badge span {
  font-size: 0.78rem;
  color: var(--peanut-600);
}

.about-content {
  max-width: 540px;
}

.about-text {
  font-size: 1.02rem;
  color: var(--peanut-700);
  margin-bottom: var(--sp-6);
  line-height: 1.9;
}

.about-highlight {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
  color: var(--peanut-800);
  border-left: 3px solid var(--peanut-500);
  padding-left: var(--sp-4);
  margin: var(--sp-6) 0;
  line-height: 1.6;
}

.about-content .btn {
  margin-top: var(--sp-4);
}

/* ========================================
   5. PRODUTOS
   ======================================== */
.products {
  padding: var(--sp-24) 0;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}

.products-grid .product-card {
  grid-column: span 2;
}


.product-card {
  background: var(--cream);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(176, 110, 46, 0.06);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(176, 110, 46, 0.12);
}

.product-img-wrap {
  position: relative;
  height: 280px;
  background: var(--white);
  padding: var(--sp-4);
  overflow: hidden;
  border-bottom: 1px solid rgba(154, 83, 17, 0.05);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0.93) contrast(1.12);
  transition: transform var(--t-slow), filter var(--t-slow);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  background: var(--grad-cta);
  color: var(--white);
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  font-size: 1.15rem;
  margin-bottom: var(--sp-3);
}

.product-body p {
  font-size: 0.9rem;
  color: var(--peanut-700);
  line-height: 1.75;
  opacity: 0.85;
  flex: 1;
}

.products-cta {
  text-align: center;
}

/* ========================================
   6. DIFERENCIAIS
   ======================================== */
.differentials {
  padding: var(--sp-24) 0;
  background: var(--peanut-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.differentials::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 136, 74, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.differentials::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 179, 0, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.differentials .section-title {
  color: var(--white);
}

.differentials .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.differentials .section-label {
  color: var(--amber-400);
}

.differentials .section-label::before {
  display: none;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-6);
  position: relative;
  z-index: 1;
}

.diff-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  backdrop-filter: blur(8px);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.diff-card.large-span {
  grid-column: span 3;
  padding: var(--sp-10) var(--sp-8);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 179, 0, 0.03) 100%);
}

.diff-card.small-span {
  grid-column: span 2;
}

.diff-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-cta);
  opacity: 0;
  transition: opacity var(--t-base);
}

.diff-card:hover::before {
  opacity: 0.08;
}

.diff-card:hover {
  border-color: rgba(200, 136, 74, 0.25);
  transform: translateY(-4px);
}

.diff-card>* {
  position: relative;
  z-index: 1;
}

.diff-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 179, 0, 0.1);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--sp-5);
  transition: background var(--t-base);
}

.diff-card:hover .diff-icon {
  background: rgba(255, 179, 0, 0.18);
}

.diff-card h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.diff-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ========================================
   7. REVENDEDORES (B2B)
   ======================================== */
.resellers {
  padding: var(--sp-24) 0;
  background: var(--grad-section);
  position: relative;
  overflow: hidden;
}

.resellers .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-16);
  align-items: center;
}

.resellers-content {
  max-width: 560px;
}

.resellers-text {
  font-size: 1.02rem;
  color: var(--peanut-700);
  line-height: 1.9;
  margin-bottom: var(--sp-8);
}

.resellers-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.benefit-card {
  background: var(--white);
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  border: 1px solid rgba(154, 83, 17, 0.06);
  transition: all var(--t-fast);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.benefit-card:hover {
  border-color: rgba(154, 83, 17, 0.15);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.benefit-card .benefit-icon {
  width: 38px;
  height: 38px;
  background: rgba(154, 83, 17, 0.06);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card .benefit-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand-laranja);
}

.benefit-card h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-escuro);
}

.benefit-card p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--peanut-700);
}

/* Resellers Image Side */
.resellers-visual {
  position: relative;
}

.resellers-visual img {
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   RECEITAS SECTION
   ======================================== */
.recipes {
  padding: var(--sp-24) 0;
  background: var(--white);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.recipe-card {
  background: var(--cream);
  padding: var(--sp-8);
  border-radius: var(--r-xl);
  border: 1px solid rgba(154, 83, 17, 0.05);
  transition: all var(--t-base);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  cursor: pointer;
}

.recipe-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: rgba(154, 83, 17, 0.18);
  background: var(--white);
}

.recipe-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--white);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(154, 83, 17, 0.07);
}

.recipe-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-manteiga);
}

.recipe-body h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--brand-escuro);
}

.recipe-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--peanut-700);
  margin-bottom: var(--sp-4);
}

.recipe-meta {
  display: flex;
  gap: var(--sp-4);
  font-size: 0.78rem;
  color: var(--brand-laranja);
  font-weight: 600;
  align-items: center;
}

.recipe-meta span {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
}

.recipe-meta svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5px;
}

.recipe-view-more {
  margin-left: auto;
  color: var(--brand-manteiga);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}

.recipe-card:hover .recipe-view-more {
  color: var(--brand-laranja);
}

.recipe-card:hover .recipe-icon {
  background: var(--brand-creme);
  border-color: var(--brand-laranja);
}

/* ---------- Recipe Modal (Dialog) ---------- */
.recipe-modal {
  border: none;
  border-radius: var(--r-2xl);
  padding: 0;
  max-width: 650px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  background: var(--white);
  outline: none;
  overflow: hidden;
  margin: auto;
}

.recipe-modal::backdrop {
  background: rgba(61, 30, 21, 0.65);
  backdrop-filter: blur(8px);
}

.recipe-modal .recipe-modal-content {
  position: relative;
  padding: var(--sp-10);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.recipe-modal .recipe-modal-close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  background: rgba(154, 83, 17, 0.08);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--brand-escuro);
  cursor: pointer;
  transition: all var(--t-fast);
  z-index: 10;
}

.recipe-modal .recipe-modal-close:hover {
  background: var(--brand-laranja);
  color: var(--white);
  transform: rotate(90deg);
}

.recipe-modal .recipe-modal-header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  border-bottom: 2px solid rgba(154, 83, 17, 0.08);
  padding-bottom: var(--sp-4);
}

.recipe-modal .recipe-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--brand-escuro);
  line-height: 1.2;
}

.recipe-modal .recipe-modal-body {
  overflow-y: auto;
  padding-right: var(--sp-2);
}

.recipe-modal .recipe-modal-body::-webkit-scrollbar {
  width: 6px;
}

.recipe-modal .recipe-modal-body::-webkit-scrollbar-track {
  background: rgba(154, 83, 17, 0.04);
}

.recipe-modal .recipe-modal-body::-webkit-scrollbar-thumb {
  background: var(--brand-laranja);
  border-radius: var(--r-full);
}

.recipe-modal .recipe-modal-body h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-laranja);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.recipe-modal .recipe-modal-body h4:first-of-type {
  margin-top: 0;
}

.recipe-modal .recipe-modal-body ul,
.recipe-modal .recipe-modal-body ol {
  margin-bottom: var(--sp-6);
  padding-left: var(--sp-5);
}

.recipe-modal .recipe-modal-body ul {
  list-style-type: disc;
}

.recipe-modal .recipe-modal-body ol {
  list-style-type: decimal;
}

.recipe-modal .recipe-modal-body li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--peanut-800);
  margin-bottom: var(--sp-2);
}

/* Animations for Dialog open */
dialog[open] {
  animation: modal-zoom-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modal-zoom-in {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ========================================
   8. DEPOIMENTOS
   ======================================== */
.testimonials {
  padding: var(--sp-24) 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 1px solid rgba(176, 110, 46, 0.06);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(176, 110, 46, 0.12);
}

.testimonial-stars {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-5);
  color: var(--amber-600);
}

.testimonial-quote {
  font-size: 0.98rem;
  color: var(--peanut-800);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: var(--sp-6);
  position: relative;
  padding-left: var(--sp-5);
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -6px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--peanut-300);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(176, 110, 46, 0.08);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--peanut-900);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--peanut-600);
}

.testimonial-tag {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-full);
}

.tag-consumer {
  background: rgba(46, 125, 50, 0.08);
  color: var(--success);
}

.tag-reseller {
  background: rgba(176, 110, 46, 0.1);
  color: var(--peanut-500);
}

.tag-distributor {
  background: rgba(33, 150, 243, 0.08);
  color: #1565C0;
}

/* ========================================
   9. ONDE ENCONTRAR
   ======================================== */
.presence {
  padding: var(--sp-24) 0;
  background: var(--cream-warm);
  position: relative;
}

.presence-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-16);
  align-items: center;
}

.presence-info {
  text-align: left;
}

.presence-text {
  font-size: 1.05rem;
  color: var(--peanut-700);
  margin-bottom: var(--sp-8);
  line-height: 1.9;
}

.presence-marketplaces {
  margin-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: flex-start;
}

.presence-marketplaces h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-escuro);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.presence-channels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.channel-card {
  background: var(--white);
  padding: var(--sp-6);
  border-radius: var(--r-lg);
  border: 1px solid rgba(154, 83, 17, 0.06);
  box-shadow: var(--shadow-card);
  transition: all var(--t-fast);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.channel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(154, 83, 17, 0.15);
}

.channel-card .channel-icon {
  width: 38px;
  height: 38px;
  background: rgba(154, 83, 17, 0.06);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-card .channel-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--brand-laranja);
}

.channel-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-escuro);
}

.channel-card p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--peanut-700);
}

/* ========================================
   10. CTA FINAL
   ======================================== */
.cta-final {
  background: url('https://project--14130974-6d40-4eab-8f4a-ea80c25678ab.lovable.app/__l5e/assets-v1/f09ab556-72fd-4000-b204-b6092d9ed6b3/bg-conversa.png') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cta-final::before {
  display: none;
}

.cta-final-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  aspect-ratio: 2191 / 718;
  padding-bottom: var(--sp-12);
  padding-left: var(--sp-12);
  padding-right: var(--sp-12);
  align-items: end;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.cta-final-left {
  display: none;
}

.cta-final-right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}


.btn-cta-brown {
  background: #6a3e14;
  color: var(--white);
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(106, 62, 20, 0.4);
  transition: all var(--t-fast);
}

.btn-cta-brown:hover {
  background: #502d0d;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(106, 62, 20, 0.5);
  color: var(--white);
}

.btn-gold {
  background: var(--brand-manteiga);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(154, 83, 17, 0.35);
}

.btn-gold:hover {
  background: var(--brand-laranja);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(154, 83, 17, 0.45);
}

/* ========================================
   11. FORMULÁRIO DE CONTATO
   ======================================== */
.contact {
  padding: var(--sp-24) 0;
  background: var(--white);
}

.contact .container {
  display: flex;
  justify-content: center;
}

.contact-info {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.contact-desc {
  font-size: 1.02rem;
  color: var(--peanut-700);
  line-height: 1.9;
  margin-bottom: var(--sp-8);
}

.contact-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(176, 110, 46, 0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--peanut-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--peanut-900);
}

/* Form */
.contact-form-card {
  background: var(--cream);
  border-radius: var(--r-xl);
  padding: var(--sp-10);
  border: 1px solid rgba(176, 110, 46, 0.06);
  box-shadow: var(--shadow-card);
}

.contact-form-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--sp-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-group {
  margin-bottom: var(--sp-5);
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--peanut-800);
  margin-bottom: var(--sp-2);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(176, 110, 46, 0.12);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--peanut-800);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B3F18' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--peanut-400);
  box-shadow: 0 0 0 3px rgba(176, 110, 46, 0.08);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--peanut-300);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
}

/* ========================================
   12. FOOTER
   ======================================== */
.footer {
  background: var(--brown-900);
  color: rgba(255, 255, 255, 0.55);
  padding: var(--sp-16) 0 var(--sp-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-10);
}

.footer-brand .logo {
  margin-bottom: var(--sp-5);
}

.footer-brand .logo-image {
  height: 120px;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--sp-4);
  max-width: 320px;
}

.footer-instagram-wrap {
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.footer-brand .instagram-link {
  display: inline-flex;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.footer-brand .instagram-link:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

.footer-brand .instagram-icon {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-5);
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  padding: var(--sp-1) 0;
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer-col a:hover {
  color: var(--amber-400);
  padding-left: var(--sp-2);
}

.footer-address {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--sp-4);
}

.footer-contact-link {
  display: flex !important;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--t-fast);
}

.footer-contact-link:hover {
  color: var(--brand-amarelo);
}

.footer-contact-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--brand-amarelo);
}

/* Seals */
.footer-seals {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  flex-wrap: wrap;
}

.footer-seal {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-info-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-info-group p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  font-size: 0.78rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--t-fast);
}

.footer-legal-links a:hover {
  color: var(--brand-amarelo);
}

.footer-legal-links .divider {
  color: rgba(255, 255, 255, 0.15);
}

.footer-credit p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-credit a {
  color: var(--white);
  font-weight: 600;
  transition: color var(--t-fast);
}

.footer-credit a:hover {
  color: var(--brand-amarelo);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--t-fast);
}

.footer-social a:hover {
  background: rgba(255, 179, 0, 0.12);
  border-color: rgba(255, 179, 0, 0.25);
  color: var(--amber-400);
  transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero {
    background: linear-gradient(rgba(61, 30, 21, 0.35), rgba(61, 30, 21, 0.35)), url('https://project--14130974-6d40-4eab-8f4a-ea80c25678ab.lovable.app/__l5e/assets-v1/dead1a46-6769-415c-9f35-1d691df64140/banner-hero.png') no-repeat center center / cover;
  }

  .hero h1 {
    color: var(--white);
  }

  .hero-desc {
    color: var(--white);
    opacity: 0.95;
    margin-inline: auto;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--sp-10);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .about .container,
  .resellers .container,
  .contact .container {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .about-visual {
    position: relative;
    width: fit-content;
    margin-inline: auto;
    display: block;
  }

  .about-img-main {
    max-width: 280px;
  }

  .about-content,
  .resellers-content,
  .contact-info {
    max-width: 100%;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
  }

  .products-grid .product-card {
    grid-column: span 2 !important;
  }


  .diff-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
  }

  .diff-grid .diff-card {
    grid-column: span 2 !important;
  }

  .diff-grid .diff-card:nth-child(5) {
    grid-column: 2 / span 2 !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }
}

@media (max-width: 768px) {
  .hero {
    background: linear-gradient(rgba(61, 30, 21, 0.35), rgba(61, 30, 21, 0.35)), url('https://project--14130974-6d40-4eab-8f4a-ea80c25678ab.lovable.app/__l5e/assets-v1/147b9867-9f5b-4f41-8563-8e429a738f9b/banner-hero-mobile.png') no-repeat center center / cover;
  }

  html {
    font-size: 15px;
  }

  .section-padding {
    padding: var(--sp-16) 0;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: url('https://project--14130974-6d40-4eab-8f4a-ea80c25678ab.lovable.app/__l5e/assets-v1/25ab54a6-6b34-4bda-b108-61e9e614dbd9/bg-menu.png') center/cover no-repeat;
    flex-direction: column;
    padding: 5rem var(--sp-8) var(--sp-8);
    gap: var(--sp-5);
    border-left: 1px solid rgba(154, 83, 17, 0.08);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu .nav-link {
    color: #000 !important;
    background-color: #fff;
    font-size: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 4px;
  }

  .nav-menu .nav-link:hover {
    color: #fff !important;
    background-color: #000 !important;
  }

  .nav-toggle {
    display: flex;
  }

  .proof-grid,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
    margin-inline: auto;
  }

  .products-grid,
  .diff-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
    margin-inline: auto;
  }

  .products-grid .product-card,
  .diff-grid .diff-card,
  .diff-grid .diff-card:nth-child(5) {
    grid-column: auto !important;
  }

  .resellers-benefits-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--sp-3);
  }

  .recipes-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--sp-6);
    max-width: 500px;
    margin: 0 auto;
  }

  .presence-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--sp-10);
    text-align: center;
  }

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

  .presence-marketplaces {
    align-items: center;
  }

  .marketplace-badges {
    justify-content: center;
  }

  .presence-channels-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 420px;
    margin-inline: auto;
  }

  .cta-final-container {
    grid-template-columns: minmax(0, 1fr);
    aspect-ratio: auto;
    min-height: 280px;
    padding-bottom: var(--sp-8);
    padding-left: var(--sp-4);
    padding-right: var(--sp-4);
    align-items: end;
    justify-items: center;
  }

  .cta-final-right {
    justify-content: center;
    width: 100%;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  /* Card and Inner Spacing Responsiveness */
  .diff-card {
    padding: var(--sp-5);
  }

  .recipe-card {
    padding: var(--sp-4);
  }

  .recipe-meta {
    flex-wrap: wrap;
    gap: var(--sp-2);
  }

  .testimonial-card {
    padding: var(--sp-5);
  }

  .contact-form-card {
    padding: var(--sp-5) var(--sp-4);
  }

  .recipe-modal .recipe-modal-content {
    padding: var(--sp-6) var(--sp-5);
  }

  .recipe-modal .recipe-modal-header h3 {
    font-size: 1.4rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-info-group {
    align-items: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .about-img-badge {
    display: none;
  }

  .about-visual {
    position: relative;
    width: fit-content;
    margin-inline: auto;
    display: block;
  }

  .about-img-main {
    max-width: 240px;
  }

  .contact-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding-inline: var(--sp-4);
  }

  .hero .container {
    padding-block: var(--sp-24) var(--sp-16);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-final-container {
    min-height: 220px;
    padding-bottom: var(--sp-5);
  }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-laranja);
  border-radius: var(--r-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-manteiga);
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(154, 83, 17, 0.2);
  color: var(--brand-escuro);
}

/* ---------- Lucide Icons Styles ---------- */
.lucide,
i[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25em;
  height: 1.25em;
  stroke-width: 2px;
  vertical-align: middle;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.proof-number.special-text {
  background: none;
  -webkit-text-fill-color: initial;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
}

.proof-number.special-text svg {
  width: 48px;
  height: 48px;
  stroke: var(--brand-laranja);
}

.about-img-badge-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.diff-icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand-laranja);
}

.benefit-check svg {
  width: 16px;
  height: 16px;
  color: var(--success);
}

.float-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-5);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--brand-amarelo);
  stroke: var(--brand-laranja);
  stroke-width: 1.5px;
}

.presence-icon-circle svg {
  width: 32px;
  height: 32px;
  color: var(--brand-manteiga);
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--brand-manteiga);
}

.footer-seal svg {
  width: 14px;
  height: 14px;
  color: var(--brand-amarelo);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

/* ---------- Marketplace Badges ---------- */
.presence-marketplaces {
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
}

.marketplace-badges {
  display: flex;
  gap: var(--sp-4);
  justify-content: flex-start;
  flex-wrap: wrap;
}

.marketplace-badge {
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1.5px solid rgba(154, 83, 17, 0.15);
  background: var(--white);
  color: var(--brand-escuro);
  transition: all var(--t-fast);
}

.marketplace-badge.ml:hover {
  background: #FFF159;
  border-color: #D1C000;
  color: #333333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.marketplace-badge.shopee:hover {
  background: #EE4D2D;
  border-color: #D03D1E;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
/* ─── Language switcher ─── */
.lang-switcher { display: inline-flex; align-items: center; margin-left: 1rem; }
.lang-switcher .lang-select {
  appearance: none;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  border-radius: 6px;
  padding: 4px 26px 4px 10px;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  transition: opacity .2s;
}
.lang-switcher .lang-select:hover { opacity: .75; }
@media (max-width: 768px) {
  .lang-switcher { margin: 0.5rem 0 0 0; }
}
