@charset "UTF-8";
/* ===========================
   Variáveis e Configurações
   =========================== */
/* ===========================
   Mixins (Atalhos Úteis)
   =========================== */
/* ===========================
   Reset e Base
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

a:visited, a:active {
  color: initial;
}

.custom-logo-link img {
  width: 120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #222222;
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ===========================
   Botões
   =========================== */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-primary, .catalog-section .btn-download-catalog, .viva-modal-footer .viva-btn-close-alt {
  background: linear-gradient(135deg, #ea1413 0%, #ea1413 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(234, 20, 19, 0.3);
}
.btn-primary:hover, .catalog-section .btn-download-catalog:hover, .viva-modal-footer .viva-btn-close-alt:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 20, 19, 0.4);
}
.btn-secondary, .btn-outline {
  background: transparent;
  color: #ea1413;
  border: 2px solid #ea1413;
}
.btn-secondary:hover, .btn-outline:hover {
  background: #ea1413;
  color: #FFFFFF;
}
.btn-secondary {
  background: #FFFFFF;
}
.btn-link {
  color: #ea1413;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-link:hover {
  color: #6B3410;
}

/* ===========================
   Header e Navegação
   =========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
  background: #ea1413;
  color: #FFFFFF;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
}
.contact-info a {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-info a:hover {
  color: #DEB887;
}

.kitchen-image img {
  border-radius: 10px;
}

.kitchen-text .section-title {
  font-family: "Agbalumo", system-ui;
  color: #6B3410;
}
.kitchen-text p {
  margin: 10px 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: #FFFFFF;
  color: #ea1413;
}

.navbar {
  padding: 1rem 0;
}
.navbar .nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo h1 {
  font-family: "Agbalumo", system-ui;
  font-size: 2rem;
  color: #ea1413;
  margin: 0;
}
.navbar .logo .tagline {
  font-size: 0.75rem;
  color: #666666;
}
.navbar .nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.navbar .nav-menu a {
  color: #222222;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}
.navbar .nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #ea1413;
  transition: all 0.3s ease;
}
.navbar .nav-menu a:hover::after, .navbar .nav-menu a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ea1413;
  transition: all 0.3s ease;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
  width: 45%;
}
.hero-title {
  font-family: "Agbalumo", system-ui;
  color: #6B3410;
  font-size: 5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 64px;
}
.hero-subtitle {
  color: black;
  font-size: 1.25rem;
}
.hero a {
  display: inline-block;
}
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #ea1413;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
}
.hero-nav:hover {
  background: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}
.hero-nav.prev {
  left: 20px;
}
.hero-nav.next {
  right: 20px;
}

/* ===========================
   Grids e Cards
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .section-title {
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  color: #6B3410;
  margin-bottom: 1rem;
}

.categories,
.featured-products,
.kitchen-section,
.history-section {
  padding: 4rem 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.category-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.category-card .category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #ea1413 0%, #ea1413 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 2rem;
}
.category-card p {
  font-size: 13px;
}

/* Estilo Geral */
.newsletter-section {
  background: radial-gradient(circle, #d6403a 0%, #b52b27 100%);
  /* Gradiente vermelho */
  padding: 60px 20px;
  text-align: center;
  color: white;
  font-family: "Montserrat", sans-serif, sans-serif;
}
.newsletter-section .container {
  max-width: 800px;
  margin: 0 auto;
}
.newsletter-section h2 {
  font-size: 2.5rem;
  font-family: "Georgia", serif;
  /* Fonte serifada como na imagem */
  margin-bottom: 10px;
  font-weight: bold;
}
.newsletter-section p {
  font-size: 1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}
.newsletter-section .icon-box {
  display: flex;
  justify-content: center;
}

.icon-box {
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  /* Deixa o ícone branco */
}

/* Formulário e Input */
.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.subscribe-form input {
  width: 100%;
  max-width: 400px;
  padding: 15px 25px;
  border-radius: 50px;
  /* Bordas arredondadas */
  border: none;
  outline: none;
  font-size: 1rem;
}

.subscribe-form button {
  background-color: #a82521;
  /* Vermelho mais escuro para o botão */
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  cursor: pointer;
  border: transparent;
  font-weight: bold;
  transition: background 0.3s;
  text-transform: uppercase;
}

.subscribe-form button:hover {
  background-color: #8e1f1c;
}

.privacy-note {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* RESPONSIVIDADE (Mobile) */
@media (max-width: 600px) {
  .subscribe-form {
    flex-direction: column;
    /* Empilha input e botão no celular */
    align-items: center;
  }
  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
    max-width: 100%;
  }
  h2 {
    font-size: 1.8rem;
  }
}
.products-grid,
.receitas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-weight {
  background: #f5f5f5;
  padding: 2.5px 10px;
  border-radius: 25px;
  color: #ea1413;
  font-weight: 600;
}

.products-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card,
.receita-card {
  background: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.product-card:hover,
.receita-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.product-card .product-image,
.product-card .receita-image,
.receita-card .product-image,
.receita-card .receita-image {
  height: 250px;
  overflow: hidden;
}
.product-card .product-info,
.product-card .receita-content,
.receita-card .product-info,
.receita-card .receita-content {
  padding: 1.5rem;
}

.product-card {
  width: 30%;
}

/* ===========================
   Seção de Produtos Disruptiva (VIVA Style)
   =========================== */
.featured-products-disruptive {
  position: relative;
  background: #FFFFFF;
  padding-bottom: 4rem;
}
.featured-products-disruptive .products-hero-header {
  background: linear-gradient(135deg, #ea1413 0%, #C41E3A 100%);
  padding: 80px 0 140px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
}
.featured-products-disruptive .products-hero-header .viva-badge-top {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.featured-products-disruptive .products-hero-header h2 {
  font-family: "Agbalumo", system-ui;
  font-size: 3.5rem;
  line-height: 1.1;
  color: #FFFFFF;
}
.featured-products-disruptive .products-hero-header h2 span {
  color: #FFD700;
  position: relative;
  z-index: 1;
}
.featured-products-disruptive .custom-shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
.featured-products-disruptive .custom-shape-divider-bottom svg {
  height: 80px;
  width: 100%;
  fill: #FFFFFF;
}
.featured-products-disruptive .viva-grid-floating {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  gap: 30px;
}

.viva-card-disruptive {
  display: flex;
  background: #FFFFFF;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(34, 34, 34, 0.05);
  height: 280px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.viva-card-disruptive:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.viva-card-disruptive .viva-img-side {
  width: 45%;
  position: relative;
  overflow: hidden;
}
.viva-card-disruptive .viva-img-side img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.viva-card-disruptive .viva-img-side .viva-price-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #6B3410;
  color: #FFFFFF;
  padding: 10px 20px;
  font-family: "Agbalumo", system-ui;
  border-radius: 0 20px 0 0;
  z-index: 2;
}
.viva-card-disruptive .viva-content-side {
  width: 55%;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, #FAF8F5, #FFFFFF);
}
.viva-card-disruptive .viva-content-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #ea1413;
  transition: 0.5s ease;
  opacity: 0.2;
}
.viva-card-disruptive .viva-content-side h3 {
  font-family: "Agbalumo", system-ui;
  font-size: 1.8rem;
  color: #6B3410;
  margin-bottom: 10px;
}
.viva-card-disruptive .viva-content-side p {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 20px;
  line-height: 1.4;
}
.viva-card-disruptive .viva-content-side .viva-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.viva-card-disruptive .viva-content-side .viva-footer-row .viva-weight {
  font-weight: 800;
  color: #D4AF37;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.viva-card-disruptive .viva-content-side .viva-footer-row .viva-btn-circle {
  width: 45px;
  height: 45px;
  background: #ea1413;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(234, 20, 19, 0.4);
  transition: all 0.3s ease;
}
.viva-card-disruptive .viva-content-side .viva-footer-row .viva-btn-circle:hover {
  background: #222222;
  transform: rotate(360deg);
}

.viva-product-extreme {
  background-color: #fff;
}
.viva-product-extreme .viva-hero-modern {
  background: #f6b449;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
}
.viva-product-extreme .viva-hero-modern .viva-tag-modern {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
}
.viva-product-extreme .viva-hero-modern .viva-title-extreme {
  font-family: "Agbalumo", system-ui;
  font-size: clamp(3rem, 8vw, 6rem);
  margin: 0;
  line-height: 0.9;
}
.viva-product-extreme .viva-hero-modern .viva-curve {
  position: absolute;
  bottom: -2px;
  width: 100%;
  line-height: 0;
}

.viva-main-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
  padding-top: 80px;
}

.viva-image-wrapper {
  position: sticky;
  top: 120px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  background: #fff;
  border: 15px solid #fff;
}
.viva-image-wrapper img {
  width: 100%;
  height: auto;
  transition: 0.5s;
}
.viva-image-wrapper:hover img {
  transform: scale(1.05);
}

.viva-modern-button {
  background: #fff;
  border: none;
  padding: 10px 30px 10px 10px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 10px 30px rgba(107, 52, 16, 0.2);
  transition: 0.3s;
}
.viva-modern-button .viva-btn-circle {
  width: 50px;
  height: 50px;
  background: #6B3410;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
}
.viva-modern-button .viva-btn-label {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #6B3410;
  letter-spacing: 1px;
}
.viva-modern-button .viva-btn-pulse {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 2px solid #6B3410;
  opacity: 0;
  z-index: 1;
}
.viva-modern-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(107, 52, 16, 0.3);
}
.viva-modern-button:hover .viva-btn-pulse {
  animation: pulseBtn 1.5s infinite;
}

@keyframes pulseBtn {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2, 1.4);
    opacity: 0;
  }
}
.viva-overlay-modern {
  position: fixed;
  inset: 0;
  background: rgba(107, 52, 16, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.viva-overlay-modern.active {
  display: flex;
  animation: fadeIn 0.4s forwards;
}

.viva-modal-glass {
  background: rgba(255, 255, 255, 0.9);
  width: 90%;
  max-width: 500px;
  border-radius: 40px;
  padding: 40px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.active .viva-modal-glass {
  transform: scale(1);
}

/* ===========================
   MODAL NUTRICIONAL DISRUPTIVO
   =========================== */
.viva-overlay-modern {
  position: fixed;
  inset: 0;
  background: rgba(34, 34, 34, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
}
.viva-overlay-modern.active {
  opacity: 1;
  display: flex;
}

.viva-modal-glass {
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  max-width: 550px;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  transform: scale(0.8) translateY(30px);
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0;
}
.active .viva-modal-glass {
  transform: scale(1) translateY(0);
}

.viva-modal-header {
  background: linear-gradient(135deg, #6B3410 0%, #4a240b 100%);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
}
.viva-modal-header h3 {
  font-family: "Agbalumo", system-ui;
  font-size: 1.8rem;
  margin: 0;
  color: #D4AF37;
}
.viva-modal-header h3 span {
  color: #FFFFFF;
  display: block;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.viva-close-trigger {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  font-size: 1.8rem;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.viva-close-trigger:hover {
  background: #C41E3A;
}

.viva-modal-scroll {
  padding: 40px;
  max-height: 60vh;
  overflow-y: auto;
  font-size: 1.05rem;
  color: #666666;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Estilização da tabela nutricional que vem do ACF */
}
.viva-modal-scroll table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.viva-modal-scroll table th,
.viva-modal-scroll table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.viva-modal-scroll table th {
  font-weight: 800;
  color: #222222;
  background: #F5F5F5;
}

.viva-modal-footer {
  padding: 20px 40px 30px;
  text-align: center;
}
.viva-modal-footer .viva-btn-close-alt {
  width: 100%;
  cursor: pointer;
  background: #6B3410;
  border: none;
}

/* Responsividade */
@media (max-width: 600px) {
  .viva-modal-glass {
    border-radius: 25px;
  }
  .viva-modal-glass .viva-modal-header {
    padding: 20px;
  }
  .viva-modal-glass .viva-modal-scroll {
    padding: 20px;
  }
}
/* Responsividade */
@media (max-width: 768px) {
  .contact-info {
    font-size: 10px;
  }
  .viva-main-layout {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
  }
  .viva-card-disruptive {
    flex-direction: column;
    height: auto;
  }
  .viva-card-disruptive .viva-img-side,
  .viva-card-disruptive .viva-content-side {
    width: 100%;
  }
  .viva-card-disruptive .viva-img-side {
    height: 200px;
  }
  .featured-products-disruptive .products-hero-header h2 {
    font-size: 2.2rem;
  }
}
/* Estilos Base para o Botão Toggle (Hambúrguer) */
.mobile-menu-toggle {
  display: none; /* Escondido no desktop */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #333; /* Cor do ícone */
  transition: all 0.3s ease;
}

/* Transformação para o "X" quando ativo */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Configuração do Menu Mobile (Drawer) */
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: flex; /* Mostra no mobile */
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%; /* Escondido fora da tela */
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 20px 20px;
    transition: 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin: 0;
    list-style: none;
  }
  .nav-menu.active {
    left: 0; /* Desliza para dentro da tela */
  }
  .nav-menu li {
    margin: 15px 0;
  }
  .nav-menu li a {
    font-size: 1.2rem;
    display: block;
    width: 100%;
  }
}
/* ===========================
   Página de Catálogo (viva-catalog)
   =========================== */
.catalog-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #FAF8F5 0%, #F5F5F5 100%);
}
.catalog-section .catalog-card {
  background: #FFFFFF;
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(34, 34, 34, 0.05);
  max-width: 1000px;
  width: 100%;
  transition: all 0.3s ease;
}
.catalog-section .catalog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.catalog-section .catalog-card:hover {
  transform: translateY(-5px);
}
.catalog-section .catalog-preview {
  flex: 1;
  background: radial-gradient(circle, #ea1413 0%, #ea1413 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
}
.catalog-section .catalog-preview .badge-new {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #FFD700;
  color: #222222;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.catalog-section .catalog-preview img {
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.catalog-section .catalog-preview img:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.catalog-section .catalog-preview:hover img {
  transform: scale(1.05) rotate(2deg);
}
.catalog-section .catalog-content {
  flex: 1.2;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.catalog-section .catalog-content h1 {
  font-family: "Agbalumo", system-ui;
  font-size: 2.5rem;
  color: #6B3410;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.catalog-section .catalog-content h1 span {
  display: block;
  color: #ea1413;
}
.catalog-section .catalog-content .catalog-description {
  color: #666666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.catalog-section .catalog-content .catalog-features {
  margin-bottom: 3rem;
}
.catalog-section .catalog-content .catalog-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #222222;
}
.catalog-section .catalog-content .catalog-features li i {
  color: #2ECC71;
  font-size: 1.2rem;
}
.catalog-section .download-box .file-meta {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #CCCCCC;
  text-align: center;
}
.catalog-section .btn-download-catalog {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 1.2rem;
  font-size: 1.1rem;
}

/* Responsividade específica para o Catálogo */
@media (max-width: 992px) {
  .catalog-section .catalog-card {
    flex-direction: column;
    margin: 0 1rem;
  }
  .catalog-section .catalog-preview {
    padding: 3rem;
  }
  .catalog-section .catalog-preview img {
    max-width: 250px;
  }
  .catalog-section .catalog-content {
    padding: 3rem;
    text-align: center;
  }
  .catalog-section .catalog-content .catalog-features li {
    justify-content: center;
  }
}
/* ===========================
   Layouts Flex/Grid Específicos
   =========================== */
.kitchen-content,
.history-content,
.about-content,
.factory-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.newsletter {
  background: #ad403f;
  padding: 4rem 0;
  color: #FFFFFF;
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 700px;
  margin: 2rem auto 1rem;
}
.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: none;
}

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

.center-element {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.drawer-overlay {
  display: none;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: #222222;
  color: #FFFFFF;
  padding: 4rem 0 2rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 20px 0;
}
.footer-column img {
  width: 90px;
}
.footer-column h3,
.footer-column h4 {
  color: #ea1413;
  font-family: "Agbalumo", system-ui;
  margin-bottom: 1rem;
}
.footer-column ul li a {
  color: #fff;
}
.footer-column ul li a:hover {
  color: #ea1413;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: #ea1413;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.footer-social a:hover {
  background: #ea1413;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #ea1413;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #6B3410;
  transform: scale(1.1);
}

/* ===========================
   Página de Erro 404
   =========================== */
.error-404 {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FAF8F5;
  padding: 4rem 0;
  text-align: center;
}
.error-404 .error-wrapper {
  max-width: 700px;
  margin: 0 auto;
}
.error-404 .error-icon {
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
.error-404 .error-icon i {
  font-size: 8rem;
  color: #ea1413;
  opacity: 0.15;
  animation: float 3s ease-in-out infinite;
}
.error-404 .error-icon .code {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Agbalumo", system-ui;
  font-size: 6rem;
  color: #6B3410;
  letter-spacing: -5px;
}
.error-404 .error-title {
  font-family: "Agbalumo", system-ui;
  font-size: 3rem;
  color: #6B3410;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.error-404 .error-message {
  color: #666666;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.error-404 .error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 4rem;
}
.error-404 .error-actions .btn {
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.error-404 .error-suggestions {
  padding-top: 2rem;
  border-top: 2px dashed #CCCCCC;
}
.error-404 .error-suggestions p {
  font-weight: 700;
  color: #222222;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.error-404 .error-suggestions .suggestion-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-404 .error-suggestions .suggestion-links a {
  color: #ea1413;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: underline;
}
.error-404 .error-suggestions .suggestion-links a:hover {
  color: #6B3410;
  text-decoration: none;
}

/* Animação Flutuante para o ícone */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.hero-mobile {
  display: none;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero {
    display: none;
  }
  .hero-mobile {
    display: block;
  }
  .catalog-section .container {
    padding: 0;
  }
  .catalog-section .container .catalog-card {
    margin: 0;
  }
  .error-404 .error-title {
    font-size: 2rem;
  }
  .error-404 .error-actions {
    flex-direction: column;
    align-items: center;
  }
  .error-404 .error-actions .btn {
    width: 100%;
  }
  .error-404 .error-icon .code {
    font-size: 4rem;
  }
  .error-404 .error-icon i {
    font-size: 6rem;
  }
}
.contact-hero {
  background: linear-gradient(135deg, #ea1413 0%, #C41E3A 100%);
  padding: 100px 0 150px;
  text-align: center;
  color: #FFFFFF;
  position: relative;
}
.contact-hero .badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.contact-hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
}
.contact-hero h1 span {
  color: #FFD700;
  position: relative;
}
.contact-hero h1 span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(255, 215, 0, 0.3);
  z-index: -1;
}
.contact-hero p {
  opacity: 0.9;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.custom-shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}
.custom-shape-divider-bottom svg {
  height: 80px;
  width: 100%;
}

.contact-content-viva {
  margin-top: -80px;
  padding-bottom: 4rem;
  background: #FFFFFF;
}

.floating-contact-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  position: relative;
  z-index: 10;
}

/* Cards Laterais */
.viva-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  border: 1px solid #f0f0f0;
}
.viva-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.viva-card .icon-circle {
  width: 60px;
  height: 60px;
  background: #FAF8F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: #ea1413;
  transition: all 0.3s ease;
}
.viva-card.sac .icon-circle {
  background: #fff0f0;
  color: #ea1413;
}
.viva-card.mail .icon-circle {
  background: #f0f7ff;
  color: #007bff;
}
.viva-card.social .icon-circle {
  background: #fff9e6;
  color: #D4AF37;
}
.viva-card:hover .icon-circle {
  transform: rotate(15deg) scale(1.1);
}
.viva-card h4 {
  font-family: "Agbalumo", system-ui;
  color: #6B3410;
}
.viva-card p {
  font-size: 0.85rem;
  color: #666666;
}
.viva-card .viva-link {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  color: #222222;
}
.viva-card .viva-link:hover {
  color: #ea1413;
}
.viva-card .footer-social {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Formulário Animado */
.viva-form-container {
  background: #FFFFFF;
  padding: 4rem;
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #f5f5f5;
}
.viva-form-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.viva-form-container .form-header {
  margin-bottom: 3rem;
}
.viva-form-container .form-header h3 {
  font-family: "Agbalumo", system-ui;
  font-size: 2rem;
  color: #6B3410;
}

.viva-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Efeito de Label Flutuante */
.viva-input-group {
  position: relative;
  margin-bottom: 25px;
}
.viva-input-group input,
.viva-input-group textarea,
.viva-input-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 12px;
  background: #FAF8F5;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}
.viva-input-group input:focus,
.viva-input-group textarea:focus,
.viva-input-group select:focus {
  border-color: #ea1413;
  background: #FFFFFF;
  outline: none;
}
.viva-input-group label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
}
.viva-input-group input:not(:-moz-placeholder) ~ label, .viva-input-group textarea:not(:-moz-placeholder) ~ label {
  top: -10px;
  left: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ea1413;
  background: #FFFFFF;
  padding: 0 5px;
}
.viva-input-group input:focus ~ label,
.viva-input-group input:not(:placeholder-shown) ~ label,
.viva-input-group textarea:focus ~ label,
.viva-input-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ea1413;
  background: #FFFFFF;
  padding: 0 5px;
}
.viva-input-group textarea {
  height: 120px;
  transform: none;
}
.viva-input-group textarea ~ label {
  top: 25px;
  transform: none;
}

.btn-viva {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  border-radius: 15px;
}

/* Responsividade */
@media (max-width: 992px) {
  .floating-contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .products-grid {
    display: flex;
    flex-direction: column;
  }
  .product-card {
    width: 100%;
  }
  .contact-hero h1 {
    font-size: 2.2rem;
  }
  .contact-info-wrapper {
    grid-template-columns: 1fr;
  }
  .viva-form-row {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   Responsividade (Breakpoints)
   =========================== */
@media (max-width: 1024px) {
  .produtos-layout {
    grid-template-columns: 1fr;
  }
  .produtos-sidebar {
    display: none;
  }
  .produtos-sidebar.active {
    display: block;
  }
  .timeline::before {
    left: 30px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 60px;
  }
}
@media (max-width: 768px) {
  .featured-products-disruptive .viva-grid-floating {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .nav-menu {
    position: fixed;
    top: 100%;
    left: -500px;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .nav-menu.active {
    left: 0;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .kitchen-content,
  .history-content,
  .about-content,
  .factory-content,
  .modal-body {
    grid-template-columns: 1fr;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .logo h1 {
    font-size: 1.5rem;
  }
}
/* --- Reset do Nav Menu para Desktop (Padrão) --- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  position: static; /* No desktop ele fica no lugar normal */
  background: transparent;
  width: auto;
  height: auto;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.drawer-header {
  display: none; /* Escondido no desktop */
}

/* --- Botão Hambúrguer (Escondido no Desktop) --- */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: #ea1413;
  transition: 0.3s;
}

/* --- CONFIGURAÇÃO DRAWER (MOBILE) --- */
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: flex; /* Mostra o botão no mobile */
  }
  .nav-menu {
    position: fixed !important;
    top: 0;
    left: -300px; /* Esconde na direita */
    width: 280px;
    border: 1px solid red;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start; /* Alinha links à esquerda */
    padding: 80px 30px;
    gap: 0; /* Espaçamento controlado pelo margin do li */
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1050;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }
  /* Quando o menu está aberto */
  .nav-menu.active {
    left: 0;
  }
  .nav-menu li {
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .nav-menu li a {
    display: block;
    padding-bottom: 10px;
    width: 100%;
    font-size: 1.1rem;
  }
  .drawer-header {
    display: block;
    font-family: "Agbalumo", cursive;
    font-size: 1.8rem;
    color: #ea1413;
    margin-bottom: 40px;
  }
  /* Fundo Escuro */
  .drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1040;
  }
  .drawer-overlay.active {
    display: block;
  }
  /* Animação do Botão X */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}/*# sourceMappingURL=style.css.map */