/* ==========================================================================
   DOCES VIP — CONFEITARIA ARTESANAL & GASTRONOMIA DE LUXO
   Design System Completo: Chocolate Belga, Rosa da Logo, Glaze & Filtros
   Pedagogia Tec Inc.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN SYSTEM VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Chocolates Nobres */
  --choc-primary: #381E11;
  --choc-dark: #22120A;
  --choc-deep: #1A0D07;
  --choc-rich: #4A2717;
  --choc-hover: #542D1A;
  --choc-light: #6E4431;
  
  /* Rosa Doce Oficial da Logo Doces VIP */
  --rose-logo: #F08CA5;
  --rose-logo-dark: #C94A6E;
  --rose-logo-soft: #FFF0F4;
  --rose-logo-light: #FCE4EC;
  --rose-logo-glow: rgba(240, 140, 165, 0.35);
  
  /* Fundos Gourmet com Textura Aveludada */
  --bg-cream: #FAF6F0;
  --bg-cream-card: #FFFFFF;
  --bg-cream-alt: #F4EBE0;
  --bg-dark-footer: #1E0F08;
  
  /* Caramelo Toffee & Ouro Comestível */
  --caramel-gold: #C88A4B;
  --caramel-light: #E2AC76;
  --caramel-glow: rgba(200, 138, 75, 0.3);
  
  /* Textos */
  --text-title: #22120A;
  --text-body: #4E3C34;
  --text-muted: #7A6961;
  --text-light: #FAF6F0;
  
  /* Tipografia */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Sombras */
  --shadow-sm: 0 4px 15px rgba(34, 18, 10, 0.06);
  --shadow-md: 0 10px 30px rgba(34, 18, 10, 0.09);
  --shadow-lg: 0 20px 45px rgba(34, 18, 10, 0.14);
  --shadow-pill: 0 5px 16px rgba(34, 18, 10, 0.25);
  --shadow-rose: 0 8px 24px rgba(201, 74, 110, 0.28);
  
  /* Raios */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  background-image: 
    radial-gradient(circle at 98% 2%, rgba(56, 30, 17, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 2% 20%, rgba(240, 140, 165, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 98% 60%, rgba(200, 138, 75, 0.07) 0%, transparent 35%),
    radial-gradient(circle at 2% 98%, rgba(56, 30, 17, 0.09) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   3. BRIGADEIRO CUSTOM CURSOR (DESKTOP)
   -------------------------------------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }
  a, button, input, select, textarea, label {
    cursor: none !important;
  }
}

.brigadeiro-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 3px 6px rgba(34, 18, 10, 0.35));
  transition: filter 0.2s ease;
}

.brigadeiro-cursor svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brigadeiro-cursor-aura {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border: 1.5px dashed rgba(240, 140, 165, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.brigadeiro-cursor-aura.cursor-hover {
  width: 62px;
  height: 62px;
  border-style: solid;
  border-color: var(--rose-logo);
  background-color: rgba(240, 140, 165, 0.15);
}

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--choc-primary), var(--rose-logo), var(--caramel-gold));
  z-index: 99999;
  width: 0%;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   4. TAGS, STATUS PILLS & TÍTULOS
   -------------------------------------------------------------------------- */
.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #FFFFFF;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-title);
  border: 1px solid rgba(240, 140, 165, 0.35);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-logo-dark);
  background: var(--rose-logo-soft);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(240, 140, 165, 0.3);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 0.5rem;
}

.section-title span {
  color: var(--rose-logo-dark);
  font-style: italic;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   5. BOTÕES COM EFEITO SHIMMER / GLAZE SHEEN
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.78rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  transition: all 0.6s ease;
  pointer-events: none;
}

.btn:hover::after {
  left: 120%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--choc-primary) 0%, var(--choc-rich) 100%);
  color: #FFFFFF;
  border: 1px solid rgba(240, 140, 165, 0.25);
  box-shadow: var(--shadow-pill);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--choc-hover) 0%, var(--rose-logo-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(34, 18, 10, 0.4);
  border-color: var(--rose-logo);
  color: #FFFFFF;
}

.btn-secondary {
  background-color: transparent;
  color: var(--choc-primary);
  border: 1.5px solid var(--choc-primary);
}

.btn-secondary:hover {
  background-color: var(--choc-primary);
  border-color: var(--choc-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.35rem;
  font-size: 0.85rem;
}

.btn-card-order {
  width: 100%;
  background: linear-gradient(135deg, var(--choc-primary) 0%, var(--choc-rich) 100%);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-pill);
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(240, 140, 165, 0.2);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-card-order:hover {
  background: linear-gradient(135deg, var(--rose-logo-dark) 0%, var(--choc-primary) 100%);
  border-color: var(--rose-logo);
  transform: translateY(-2px);
  box-shadow: var(--shadow-rose);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   6. HEADER / NAVEGAÇÃO
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition);
  padding: 1.1rem 0;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240, 140, 165, 0.2);
}

.header.scrolled {
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img-seal {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-logo);
  box-shadow: 0 2px 8px rgba(240, 140, 165, 0.35);
  transition: transform var(--transition);
}

.logo-wrap:hover .logo-img-seal {
  transform: rotate(5deg) scale(1.05);
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--choc-primary);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--choc-primary);
  position: relative;
  padding: 0.2rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--rose-logo);
  transition: width var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--rose-logo-dark);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--choc-primary);
  padding: 0.3rem;
}

/* Mobile Drawer Menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34, 18, 10, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background: #FFFDF9;
  z-index: 2000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transition: right 0.35s ease;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-close-btn {
  font-size: 1.4rem;
  color: var(--choc-primary);
}

.mobile-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-links-list a {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--choc-primary);
}

/* --------------------------------------------------------------------------
   7. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 8.5rem 0 5rem;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: 
    radial-gradient(circle at 90% 15%, rgba(56, 30, 17, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(240, 140, 165, 0.12) 0%, transparent 40%),
    var(--bg-cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-title);
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero-headline em {
  font-style: italic;
  color: var(--rose-logo-dark);
}

.hero-subheadline {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 2.2rem;
  max-width: 500px;
}

.hero-subheadline a {
  color: var(--rose-logo-dark);
  font-weight: 600;
  text-decoration: underline;
}

.hero-cta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-card-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(34, 18, 10, 0.18);
  border: 4px solid #FFFFFF;
}

.hero-card-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
  transition: transform 0.6s ease;
}

.hero-card-frame:hover img {
  transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   8. VITRINE ("NOSSA VITRINE DE DESEJOS") & FILTROS
   -------------------------------------------------------------------------- */
.vitrine-section {
  padding: 5rem 0 6rem;
  position: relative;
  background: 
    radial-gradient(circle at 5% 50%, rgba(56, 30, 17, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 95% 20%, rgba(240, 140, 165, 0.08) 0%, transparent 35%),
    var(--bg-cream);
}

.vitrine-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Filtros por Categoria */
.vitrine-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.8rem;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  color: var(--text-body);
  border: 1px solid rgba(240, 140, 165, 0.35);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--rose-logo);
  color: var(--rose-logo-dark);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--choc-primary) 0%, var(--choc-rich) 100%);
  color: #FFFFFF;
  border-color: var(--choc-primary);
  box-shadow: var(--shadow-pill);
}

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

.product-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), opacity 0.3s ease;
}

.product-card.hidden {
  display: none !important;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: #E8DCCB;
  border: 1px solid rgba(240, 140, 165, 0.2);
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.5s ease;
}

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

.product-flavor-tag {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  color: var(--rose-logo-dark);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(240, 140, 165, 0.4);
  z-index: 2;
}

.product-info {
  padding: 0.9rem 0.2rem 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 0.25rem;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-desc strong {
  color: var(--text-title);
}

/* Tag de Imagem Ilustrativa Discreta */
.photo-disclaimer-tag {
  position: absolute;
  bottom: 0.55rem;
  left: 0.55rem;
  background: rgba(34, 18, 10, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.6rem;
  font-weight: 500;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 3;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.photo-disclaimer-tag i {
  color: var(--rose-logo);
}

/* Banner de Personalização Ilimitada */
.custom-options-banner {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, var(--rose-logo-soft) 0%, #FFFFFF 100%);
  border: 1.5px dashed rgba(240, 140, 165, 0.45);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-sm);
}

.custom-options-content {
  max-width: 680px;
}

.custom-options-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 0.4rem;
}

.custom-options-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. STRIP "COMO PEDIR"
   -------------------------------------------------------------------------- */
.how-to-order-strip {
  padding: 4.2rem 0;
  background-color: var(--bg-cream-alt);
  text-align: center;
  border-top: 1px solid rgba(240, 140, 165, 0.25);
  border-bottom: 1px solid rgba(240, 140, 165, 0.25);
}

.how-to-order-strip .section-title {
  margin-bottom: 2rem;
}

.how-to-order-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.how-to-steps-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-title);
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.how-to-steps-text span {
  color: var(--rose-logo-dark);
}



/* --------------------------------------------------------------------------
   11. FAQ ACCORDION ("DÚVIDAS FREQUENTES")
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 5rem 0;
  background-color: var(--bg-cream-alt);
  border-top: 1px solid rgba(240, 140, 165, 0.2);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-accordion-box {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid rgba(240, 140, 165, 0.3);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.active {
  border-color: var(--rose-logo);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-title);
  text-align: left;
  gap: 1rem;
}

.faq-question i {
  color: var(--rose-logo-dark);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.5rem 1.2rem;
}

/* --------------------------------------------------------------------------
   12. SEÇÃO "FALE CONOSCO" & ATENDIMENTO
   -------------------------------------------------------------------------- */
.contact-chef-section {
  padding: 5rem 0;
  background: 
    radial-gradient(circle at 10% 80%, rgba(56, 30, 17, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(240, 140, 165, 0.1) 0%, transparent 40%),
    var(--bg-cream);
}

.contact-chef-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.chef-profile-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.chef-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rose-logo);
  box-shadow: 0 4px 12px rgba(240, 140, 165, 0.3);
  flex-shrink: 0;
}

.chef-info-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 0.15rem;
}

.chef-info-sub {
  font-size: 0.85rem;
  color: var(--rose-logo-dark);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.chef-info-note {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 500;
}

.whatsapp-contact-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(240, 140, 165, 0.25);
  text-align: center;
  max-width: 420px;
}

.whatsapp-number-big {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-title);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.whatsapp-number-big i {
  color: #25D366;
  font-size: 1.7rem;
}

.contact-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
  position: relative;
}

.contact-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
}

/* --------------------------------------------------------------------------
   13. BANNER DIRECIONADOR DO INSTAGRAM
   -------------------------------------------------------------------------- */
.instagram-direct-section {
  padding: 3.5rem 0;
  background: var(--bg-cream);
}

.instagram-direct-card {
  background: linear-gradient(135deg, var(--choc-primary) 0%, var(--choc-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: 0 15px 35px rgba(34, 18, 10, 0.25);
  border: 1.5px solid rgba(240, 140, 165, 0.35);
  position: relative;
  overflow: hidden;
}

.instagram-direct-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(240, 140, 165, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.instagram-direct-left {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.instagram-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F08CA5, #C94A6E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(201, 74, 110, 0.4);
  flex-shrink: 0;
}

.instagram-direct-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose-logo);
  display: block;
  margin-bottom: 0.3rem;
}

.instagram-direct-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.instagram-direct-desc {
  font-size: 0.92rem;
  color: rgba(250, 246, 240, 0.85);
  line-height: 1.5;
  max-width: 540px;
}

.btn-instagram-direct {
  background: linear-gradient(135deg, #F08CA5, #C94A6E);
  color: #FFFFFF;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(201, 74, 110, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition);
}

.btn-instagram-direct:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(201, 74, 110, 0.55);
  color: #FFFFFF;
}

@media (max-width: 900px) {
  .instagram-direct-card {
    flex-direction: column;
    text-align: center;
    padding: 2.2rem 1.8rem;
  }
  .instagram-direct-left {
    flex-direction: column;
    gap: 1.2rem;
  }
  .instagram-direct-desc {
    margin: 0 auto;
  }
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.main-footer {
  background-color: var(--bg-dark-footer);
  color: var(--text-light);
  padding: 2.5rem 0 2rem;
}

.footer-inner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  font-size: 1.2rem;
}

.footer-social-icons a, .footer-social-icons button {
  color: var(--rose-logo-soft);
}

.footer-social-icons a:hover, .footer-social-icons button:hover {
  color: var(--rose-logo);
}

.footer-nav-simple {
  display: flex;
  gap: 1.8rem;
  font-size: 0.9rem;
  color: rgba(250, 246, 240, 0.8);
}

.footer-nav-simple a:hover {
  color: var(--rose-logo);
}

.footer-bottom-copy {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.55);
}

.pedagogia-signature {
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.8rem;
}

.pedagogia-signature strong {
  color: var(--rose-logo-light);
}

/* --------------------------------------------------------------------------
   15. WHATSAPP LEAD CAPTURE MODAL
   -------------------------------------------------------------------------- */
.whatsapp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34, 18, 10, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-modal-card {
  background: #FFFDF9;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(240, 140, 165, 0.4);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform var(--transition);
}

.whatsapp-modal-overlay.open .whatsapp-modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rose-logo-soft);
  color: var(--choc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.modal-close-btn:hover {
  transform: rotate(90deg);
  background: var(--rose-logo);
  color: #FFFFFF;
}

.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-logo-badge {
  width: 58px;
  height: 58px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--rose-logo);
  box-shadow: 0 3px 10px rgba(240, 140, 165, 0.3);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text-title);
  margin-bottom: 0.25rem;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.modal-product-highlight {
  background: var(--rose-logo-soft);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rose-logo-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(240, 140, 165, 0.25);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(240, 140, 165, 0.35);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  background: #FFFFFF;
  color: var(--text-title);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--rose-logo);
  box-shadow: 0 0 0 3px var(--rose-logo-glow);
}

/* --------------------------------------------------------------------------
   16. BOTÃO FLUTUANTE WHATSAPP
   -------------------------------------------------------------------------- */
.whatsapp-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, var(--choc-primary) 0%, var(--choc-dark) 100%);
  color: #FFFFFF;
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 25px rgba(34, 18, 10, 0.4);
  border: 1.5px solid rgba(240, 140, 165, 0.35);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.whatsapp-floating:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, var(--choc-hover) 0%, var(--rose-logo-dark) 100%);
  border-color: var(--rose-logo);
  color: #FFFFFF;
}

.whatsapp-floating i {
  font-size: 1.25rem;
  color: #25D366;
}

/* --------------------------------------------------------------------------
   17. COMPARTILHAR CARDÁPIO (STRIP ELEGANTE)
   -------------------------------------------------------------------------- */
.share-menu-strip {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.btn-share-menu {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #FFFFFF;
  color: var(--text-title);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(240, 140, 165, 0.4);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-share-menu i {
  color: #25D366;
  font-size: 1.05rem;
}

.btn-share-menu:hover {
  background: var(--rose-logo-soft);
  border-color: var(--rose-logo);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--rose-logo-dark);
}

/* --------------------------------------------------------------------------
   18. PROVA SOCIAL FLUTUANTE ULTRA-DISCRETA (MINIMALISTA)
   -------------------------------------------------------------------------- */
.social-proof-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 990;
  max-width: 265px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(240, 140, 165, 0.28);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.85rem;
  box-shadow: 0 4px 18px rgba(34, 18, 10, 0.08);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s;
  pointer-events: none;
}

.social-proof-toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.toast-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rose-logo-soft);
  border: 1px solid rgba(240, 140, 165, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  flex-shrink: 0;
}

.toast-content {
  flex-grow: 1;
}

.toast-title {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.2;
  margin-bottom: 0.1rem;
}

.toast-time {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.toast-time i {
  color: #25D366;
  font-size: 0.45rem;
}

.toast-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.15rem;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.2s ease;
}

.toast-close-btn:hover {
  color: var(--rose-logo-dark);
}

/* --------------------------------------------------------------------------
   19. RESPONSIVIDADE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .products-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-grid, .contact-chef-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .products-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .custom-options-banner {
    flex-direction: column;
    text-align: center;
  }
  .footer-inner-row, .footer-bottom-copy {
    flex-direction: column;
    text-align: center;
  }
  .whatsapp-floating span {
    display: none;
  }
  .whatsapp-floating {
    padding: 0.85rem;
    border-radius: 50%;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .social-proof-toast {
    bottom: 5.5rem;
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
}
