/* CSS Variables - Design System */
:root {
  --background: 0 0% 0%;
  --foreground: 0 0% 100%;
  --card: 0 0% 8%;
  --card-foreground: 0 0% 100%;
  --popover: 0 0% 5%;
  --popover-foreground: 0 0% 100%;
  --primary: 45 100% 60%;
  --primary-foreground: 0 0% 100%;
  /* Brand accent red (#fb1718) */
  --brand-red: 0 97% 54%;
  --glow-red: 0 0 40px hsl(var(--brand-red) / 0.3);
  --secondary: 0 0% 15%;
  --secondary-foreground: 0 0% 100%;
  --muted: 0 0% 20%;
  --muted-foreground: 0 0% 60%;
  --accent: 45 100% 60%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 0 0% 20%;
  --input: 0 0% 15%;
  --ring: 45 100% 60%;
  --radius: 1rem;
  --gradient-orange: linear-gradient(
    135deg,
    hsl(45 100% 60%) 0%,
    hsl(45 100% 55%) 100%
  );
  --zu-yellow: #ffc107;
  --gradient-hero: linear-gradient(180deg, hsl(0 0% 0%) 0%, hsl(0 0% 5%) 100%);
  --glow-orange: 0 0 40px hsl(45 100% 60% / 0.3);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Cause", "Poppins", system-ui, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

/* Utility Classes */
.container {
  max-width: 1000px;
  position: relative;
  overflow: hidden;
  z-index: 10;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-primary {
  /* Use brand red for text that previously used primary */
  color: hsl(var(--brand-red));
}

.hidden {
  display: none !important;
}

.w-full {
  width: 100%;
}

/* Animations */
@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

@keyframes particles {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

.animate-particles {
  animation: particles linear infinite;
}

/* Container de partículas animadas */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: hsl(var(--brand-red) / 0.6);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 6px hsl(var(--brand-red) / 0.3);
}

/* Responsividade das partículas */
@media (max-width: 768px) {
  .particles-container {
    z-index: 0;
  }

  .particle {
    box-shadow: 0 0 4px hsl(var(--brand-red) / 0.2);
  }
}

@media (max-width: 480px) {
  .particle {
    box-shadow: 0 0 3px hsl(var(--primary) / 0.15);
  }
}

@keyframes accordion-down {
  from {
    height: 0;
  }
  to {
    height: var(--accordion-content-height);
  }
}

@keyframes accordion-up {
  from {
    height: var(--accordion-content-height);
  }
  to {
    height: 0;
  }
}

.animate-scale-in {
  animation: scale-in 0.4s ease-out;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1rem;
  background: hsl(var(--primary));
  color: hsl(var(--brand-red));
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.97);
}

.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--brand-red));
  box-shadow: 0 0 40px hsl(var(--primary) / 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(0.96);
  box-shadow: 0 0 50px hsl(var(--primary) / 0.45);
}

/* Outline Button: transparent background, primary border, brand red text */
.btn-outline {
  background: transparent;
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--brand-red));
}

.btn-outline:hover {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
  color: hsl(var(--brand-red));
  transform: translateY(-1px);
}

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

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Order Type Cards */
.order-type-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.order-card {
  display: block;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--secondary));
  color: hsl(var(--foreground));
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.order-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px hsl(0 0% 0% / 0.35);
}

.order-card input {
  display: none;
}

.order-card .card-body {
  padding: 0.75rem 1rem;
}

.order-card .card-body h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.order-card .card-body p {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

.order-card input:checked + .card-body {
  border-left: 3px solid hsl(var(--brand-red));
  background: hsl(var(--card));
  box-shadow: 0 0 0 2px hsl(var(--brand-red) / 0.25) inset;
}

@media (max-width: 760px) {
  .order-type-cards {
    grid-template-columns: 1fr;
  }
}

/* Header Styles */
.header {
  position: relative;
  z-index: 50;
  background: hsl(var(--background)) !important;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  width: 100px;
  height: 70px;
}

.logo-img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

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

.nav-link {
  color: hsl(var(--foreground));
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: hsl(var(--brand-red));
}

.nav-desktop .nav-link,
.nav-mobile .nav-link {
  position: relative;
}

.nav-desktop .nav-link::after,
.nav-mobile .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 2px;
  background: hsl(var(--primary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}

.nav-desktop .nav-link:hover::after,
.nav-mobile .nav-link:hover::after {
  transform: scaleX(1);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: hsl(var(--foreground));
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn i {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu-icon {
  width: 32px;
  height: 24px;
  position: relative;
}

.mobile-menu-icon .mobile-menu-btn {
  width: 32px;
  height: 24px;
  position: relative;
  padding: 0;
}

.mobile-menu-icon .line {
  width: 100%;
  height: 4px;
  background-color: hsl(var(--foreground));
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-icon .line-1 {
  top: 0;
}

.mobile-menu-icon .line-2 {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-icon .line-3 {
  bottom: 0;
}

.header.menu-open .line-1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header.menu-open .line-2 {
  opacity: 0;
}

.header.menu-open .line-3 {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid hsl(var(--border));
}

.nav-mobile .nav-link {
  padding: 0.5rem 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}

@media (min-width: 1920px) {
  .hero-section {
    min-height: 70vh;
  }
}

.bg-ellipse {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

.bg-ellipse-1 {
  width: 1700px;
  height: 90%;
  filter: blur(200px);
  opacity: 1;
  top: -30%;
  left: -60%;
  transform: translate(-50%, -50%);
  background: hsl(var(--primary));
  animation: float 6s ease-in-out infinite;
}

.bg-ellipse-4 {
  width: 500px;
  height: 600px;
  object-fit: contain;
  background: hsl(var(--primary));
  bottom: 60%;
  left: -20%;
  z-index: -1;
  filter: blur(100px);
}

.bg-ellipse-5 {
  width: 400px;
  height: 400px;
  background: hsl(var(--primary));
  bottom: 60%;
  right: -10%;
  z-index: -5;
  filter: blur(90px);
}

/* Responsividade das elipses */
@media (max-width: 1285px) {
  .bg-ellipse-5 {
    width: 250px;
    height: 400px;
    right: 0%;
    opacity: 1;
    bottom: 60%;
    filter: blur(90px);
  }
}

@media (max-width: 768px) {
  .bg-ellipse-1 {
    width: 800px;
    height: 700px;
    top: -30%;
    left: -60%;
  }

  .bg-ellipse-5 {
    bottom: 85%;
    width: 250px;
    height: 350px;
  }
}

@media (max-width: 540px) {
  .bg-ellipse-5 {
    width: 180px;
    height: 250px;
    filter: blur(70px);
  }
}

@media (max-width: 480px) {
  .bg-ellipse-1 {
    left: -80%;
    width: 630px;
  }

  .bg-ellipse-4 {
    width: 300px;
    height: 450px;
    bottom: 82%;
    left: -30%;
    filter: blur(100px);
  }
}

@media (min-width: 1920px) {
  .bg-ellipse-5 {
    right: -7%;
  }
  .bg-ellipse-4 {
    left: -7%;
  }
  .bg-ellipse-1 {
    left: -40%;
  }
}

@media (min-width: 2400px) {
  .bg-ellipse-1 {
    left: -20%;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 0;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  /* No special grid layout needed for centered content */
}

/* Novos Estilos do Hero (Inspirado no Sindicato) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--foreground)); /* Usando a cor da marca */
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  border: 1px solid hsl(var(--primary));
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.1);
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.title-line {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem); /* Texto maior e responsivo */
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: hsl(var(--foreground));
}

.title-line.highlight {
  color: hsl(var(--primary));
}

.title-subtitle {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: hsl(var(--brand-red));
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: hsl(var(--foreground));
  margin-bottom: 2.5rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 1.5rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: hsl(var(--primary));
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Melhoria na Imagem - REMOVIDO / OCULTO */
.hero-image {
  display: none;
}

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .hero-img {
    transform: none;
    max-width: 100%;
  }

  .hero-img:hover {
    transform: scale(1.02);
  }
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
  max-width: 450px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.hero-image {
  position: relative;
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background: hsl(var(--primary) / 0.3);
  border-radius: 1.5rem;
  filter: blur(2rem);
  transform: scale(0.95);
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-img {
  position: relative;
  border-radius: 1.5rem;
  width: 100%;
  z-index: 2;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.title-divider {
  width: 5rem;
  height: 0.25rem;
  background: hsl(var(--primary));
  border-radius: 0.125rem;
  margin: 0 auto 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  max-width: 28rem;
  margin: 0 auto;
  font-weight: 500;
}

/* Generic Card Wrapper for Sections */
.section-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* Step Actions alignment */
.pizza-step .step-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.step-actions.step-actions-split {
  justify-content: space-between;
}

/* Quantity row layout */
.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 768px) {
  .quantity-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* About Section */
.about-section {
  padding: 5rem 0;
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* Payment Methods */
.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.payment-option {
  cursor: pointer;
  position: relative;
}

.payment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: var(--transition-smooth);
  height: 100%;
}

.payment-card i {
  font-size: 1.5rem;
  color: hsl(var(--muted-foreground));
  transition: var(--transition-smooth);
}

.payment-card span {
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: var(--transition-smooth);
}

.payment-option input[type="radio"]:checked + .payment-card {
  background-color: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
  box-shadow: 0 0 15px hsl(var(--primary) / 0.2);
}

.payment-option input[type="radio"]:checked + .payment-card i,
.payment-option input[type="radio"]:checked + .payment-card span {
  color: hsl(var(--primary));
}

.payment-card.small {
  flex-direction: row;
  padding: 10px;
  gap: 6px;
}

.payment-card.small span {
  font-size: 0.85rem;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 650px; /* Altura fixa controlada */
  object-fit: cover; /* Garante que a imagem preencha a área sem distorcer */
}

@media (max-width: 768px) {
  .about-img {
    height: 530px; /* Altura fixa controlada para mobile */
  }
}

.about-description {
  font-size: 1rem;
  color: hsl(var(--foreground));
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.fundadores_text {
  font-size: 1.2rem;
  color: hsl(var(--brand-red));
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Quality Section */
.quality-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.quality-bg-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  filter: blur(120px);
}

.quality-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.quality-img {
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.quality-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-card {
  display: flex;
  gap: 1rem;
  padding: 0.8rem;
  background: hsl(var(--card));
  border-radius: 1rem;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  background: hsl(var(--secondary));
  transform: scale(1.05);
}

.feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: hsl(var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-svg {
  color: hsl(var(--brand-red));
  width: 1.5rem;
  height: 1.5rem;
}
/* Fallback para renderização dos ícones Lucide no container de feature-card */
.feature-icon .lucide,
.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--brand-red));
  display: block;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: hsl(var(--muted-foreground));
}

/* How to Order Section */
.how-to-order-section {
  padding: 5rem 0;
  background: hsl(var(--card));
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-card {
  position: relative;
  text-align: center;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

.step-number {
  position: absolute;
  top: -2.2rem;
  left: 30%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  background: hsl(var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: var(--glow-orange);
}

.step-icon {
  width: 5rem;
  height: 5rem;
  background: hsl(var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--brand-red));
}

.step-icon i {
  font-size: 1.5rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-description {
  color: hsl(var(--muted-foreground));
}

.how-to-order-cta {
  text-align: center;
}

/* Catalog Section */
.catalog-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.catalog-bg-effect {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  filter: blur(120px);
  animation: float 6s ease-in-out infinite;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: hsl(var(--card));
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

.category-card:hover {
  box-shadow: var(--glow-orange);
  transform: scale(1.02);
}

.category-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsl(var(--background)),
    hsl(var(--background) / 0.5),
    transparent
  );
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.category-icon {
  width: 4rem;
  height: 4rem;
  background: hsl(var(--primary) / 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1);
}

.category-icon-svg {
  color: hsl(var(--brand-red));
  width: 2rem;
  height: 2rem;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.category-link {
  display: flex;
  align-items: center;
  color: hsl(var(--brand-red));
  font-weight: 600;
  transition: transform 0.3s ease;
}

.category-card:hover .category-link {
  transform: translateX(0.5rem);
}

.category-arrow {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
}

/* ========================================
   SEÇÃO DE DEPOIMENTOS (TESTIMONIALS)
   ======================================== */

.testimonials-section {
  padding: 6rem 0;
  background: transparent;
  position: relative;
}

.testimonials-section .container {
  position: relative;
  padding: 0;
}

.testimonialsSwiper {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  max-width: 1000px;
}

.testimonial-card {
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border) / 0.5);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  border-top: 4px solid hsl(var(--primary));
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  margin-bottom: 1.5rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quote-icon {
  font-size: 1.5rem;
  color: hsl(var(--brand-red));
  margin-bottom: 0.75rem;
  display: block;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--foreground) / 0.9);
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  flex-shrink: 0;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--brand-red));
  margin: 0 0 0.25rem 0;
}

.author-role {
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.7);
  margin: 0 0 0.5rem 0;
}

.author-rating {
  display: flex;
  gap: 0.25rem;
}

.author-rating .star {
  color: #ffd700;
  font-size: 0.875rem;
  width: 0.875rem;
  height: 0.875rem;
}

.testimonialsSwiper .swiper-button-prev,
.testimonialsSwiper .swiper-button-next {
  border-radius: 50%;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  font-size: 0.5rem;
  top: 70%;
  transform: translateY(-50%);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1rem !important;
}

.testimonialsSwiper .swiper-button-prev {
  left: 11%;
  top: 105%;
}

.testimonialsSwiper .swiper-button-next {
  right: 11%;
  top: 105%;
}

/* Swiper Navigation */
.testimonialsSwiper .swiper-pagination {
  position: relative;
  margin-top: 1rem;
}

.testimonialsSwiper .swiper-pagination-bullet {
  background: hsl(var(--muted-foreground));
  opacity: 0.5;
  transition: all 0.3s ease;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
  background: hsl(var(--primary));
  opacity: 1;
  transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonial-card {
    padding: 1.5rem;
    min-height: 250px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .author-avatar {
    width: 2.25rem;
    height: 2.25rem;
  }

  .author-name {
    font-size: 0.95rem;
  }

  .author-role {
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .testimonialsSwiper .swiper-button-prev,
  .testimonialsSwiper .swiper-button-next {
    display: none;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 2rem 20px;
  }

  .testimonial-card {
    padding: 1.25rem;
    min-height: 220px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .quote-icon {
    font-size: 1.25rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
}

.faq-accordion {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: hsl(var(--primary));
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  transition: color 0.3s ease;
}

.faq-trigger:hover {
  color: hsl(var(--primary));
}

.faq-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.faq-item.active .faq-content {
  max-height: 200px;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* Location Section */
.location-section {
  padding: 5rem 0;
  background: hsl(var(--card));
}

.location-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.location-map {
  height: 400px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-item {
  display: flex;
  gap: 1rem;
}

.location-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: hsl(var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-icon-svg {
  color: hsl(var(--brand-red));
  width: 1.5rem;
  height: 1.5rem;
}

.location-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.location-text {
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
}

.location-hours {
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
}

.hours-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  color: hsl(var(--muted-foreground));
}

.hours-time {
  font-weight: 600;
  color: hsl(var(--foreground));
}

/* Footer */
.footer {
  background: hsl(var(--muted));
  border-top: 1px solid hsl(var(--border));
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.contact-icon {
  color: hsl(var(--brand-red));
  width: 1.125rem;
  height: 1.125rem;
}

.footer-hours {
  color: hsl(var(--muted-foreground));
}

.footer-hours p {
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  background: hsl(var(--secondary));
  color: hsl(var(--foreground));
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: hsl(var(--primary));
}

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
  text-align: center;
  color: hsl(var(--muted-foreground));
}

/* Scroll Top Floating Button */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: hsl(var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px hsl(var(--primary) / 0.4);
  transition: var(--transition-smooth);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px hsl(var(--primary) / 0.6);
}

.scroll-top i {
  color: hsl(var(--brand-red));
  font-size: 1.5rem;
}

/* Page Styles */
.page-main {
  padding-top: 9rem;
  padding-bottom: 5rem;
}

.page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.page-icon {
  display: none;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.page-icon-svg {
  width: 5rem;
  height: 5rem;
  background: hsl(var(--primary) / 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--brand-red));
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-description {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  max-width: 32rem;
  margin: 0 auto;
  font-weight: 500;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
  justify-content: center;
  align-items: center;
}

.menu-item {
  background: hsl(var(--card));
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  transition: var(--transition-smooth);
  width: 100%;
}

.menu-item:hover {
  border-color: hsl(var(--primary));
  box-shadow: var(--glow-orange);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.menu-item-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.menu-item-price {
  color: hsl(var(--brand-red));
  font-weight: 700;
  font-size: 1.125rem;
}

.menu-item-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.menu-item-obs {
  font-size: 0.875rem;
  color: hsl(var(--brand-red));
  font-style: italic;
}

/* Page CTA */
.page-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
}

/* Info Banner */
.info-banner {
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.banner-text {
  font-size: 1.125rem;
}

.banner-highlight {
  font-weight: 700;
}

/* Active Navigation Link */
.nav-link.active {
  color: hsl(var(--brand-red));
}

/* Menu Item Controls */
.menu-item-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.quantity-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid hsl(var(--brand-red));
  background: transparent;
  color: hsl(var(--brand-red));
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: hsl(var(--brand-red));
  color: hsl(var(--primary-foreground));
  transform: scale(1.1);
}

.quantity {
  font-size: 1.2rem;
  font-weight: bold;
  color: hsl(var(--foreground));
  min-width: 2rem;
  text-align: center;
}

.bebidas-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .bebidas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bebida-item {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.bebida-item:hover {
  border-color: hsl(var(--primary));
  transform: translateY(-2px);
}

.bebida-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.bebida-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.bebida-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--brand-red));
}

.bebida-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* New Layout for Bebidas/Picoles with Image */
.bebida-content-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.bebida-img {
  width: 100px;
  aspect-ratio: 5/5;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 1rem;
  background-color: #eee;
  flex-shrink: 0;
}

.bebida-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bebida-content-row .bebida-header {
  margin-bottom: 0.5rem;
}

.bebida-content-row .bebida-controls {
  justify-content: flex-start;
}

/* Page Sections */
.header-section {
  border-bottom: 1px solid hsl(var(--border));
  position: sticky;
  top: 0;
  z-index: 100;
}

.pizza-hero-section,
.lanches-hero-section,
.almoco-hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cart-section,
.cta-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section {
  display: none;
}

.footer-section {
  background: hsl(var(--muted));
  padding: 3rem 0 1rem;
  border-top: 1px solid hsl(var(--border));
}

/* Responsividade das seções */
@media (max-width: 768px) {
  .pizza-hero-section,
  .lanches-hero-section,
  .almoco-hero-section {
    min-height: 50vh;
    padding: 2rem 0;
  }

  .pizza-builder-section,
  .bebidas-section,
  .cart-section,
  .cta-section {
    padding: 2rem 0;
  }
}

/* Pizza Builder Section */
.pizza-builder-section {
  position: relative;
  overflow: hidden;
}

/* Pizza Steps */
.pizza-step {
  min-height: 500px;
}

.pizza-quantity-section {
  margin: 3rem 0;
  text-align: center;
}

.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.quantity-display {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--primary));
  min-width: 3rem;
  text-align: center;
}

.quantity-info {
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
}

.step-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.btn-secondary {
  background: hsl(var(--primary));
  color: hsl(var(--brand-red));
  border: 1px solid hsl(var(--primary));
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  transform: translateY(-1px);
  filter: brightness(0.96);
}

.pizza-selection-summary {
  background: hsl(var(--card));
  border: 2px solid hsl(var(--primary));
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.pizza-selection-summary h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

#pizza-selection-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pizza-selection-item {
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pizza-selection-info {
  flex: 1;
}

.pizza-selection-name {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.pizza-selection-price {
  color: hsl(var(--brand-red));
  font-weight: 600;
}

.subsection-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  text-align: center;
}
.subsection-title.left {
  text-align: left;
}

/* Pizza Size Selection */
.pizza-size-section {
  margin-bottom: 3rem;
}

.size-options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  /* --- Regras Gerais para Cards de Seleção (Tamanho de Pizza) --- */
  .size-options {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: center !important;
  }

  /* Padrão: 2 por linha (Tamanhos de Pizza) */
  .size-option {
    width: calc(50% - 6px) !important;
    max-width: none !important;
    margin: 0 !important;
  }

  /* --- Regras Específicas para Tipo de Pedido (3 por linha) --- */
  .size-options.order-type-options {
    flex-wrap: nowrap !important; /* Linha única */
    gap: 6px !important; /* Gap reduzido */
  }

  .size-options.order-type-options .size-option {
    width: 33.33% !important; /* 3 colunas iguais */
    flex: 1 1 auto !important;
  }

  /* --- Estilização dos Cards em Mobile --- */
  .size-card {
    padding: 12px 6px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 90px !important;
    height: 100% !important; /* Altura total do container */
    gap: 4px !important;
  }

  /* Título solicitado com 1rem */
  .size-card h4 {
    font-size: 1rem !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
  }

  .spam-description {
    font-size: 0.75rem !important;
    margin-bottom: 2px !important;
    gap: 4px !important;
  }

  .spam-description p {
    margin: 0 !important;
  }

  .size-card p {
    font-size: 0.75rem !important;
    margin-bottom: 4px !important;
    line-height: 1.2 !important;
  }

  .size-price {
    font-size: 1rem !important;
    margin-top: auto !important;
  }

  /* --- Ajustes Específicos para Conteúdo de Order Type --- */
  .size-card.order-type {
    min-height: 80px !important;
    padding: 10px 4px !important;
  }

  /* Título um pouco menor para caber 3 lado a lado */
  .size-card.order-type h4.order-type-title {
    font-size: 0.85rem !important;
    margin: 0 0 4px 0 !important;
    white-space: nowrap !important; /* Evitar quebra do título */
  }

  /* Descrição restaurada e reduzida */
  .size-card.order-type p.order-type-desc {
    display: block !important;
    font-size: 0.65rem !important;
    line-height: 1.1 !important;
    margin: 0 !important;
    opacity: 0.9;
  }
}

.size-option {
  max-width: 300px;
  width: 100%;
  cursor: pointer;
}

.size-option input[type="radio"] {
  display: none;
}

.size-card {
  background: hsl(var(--card));
  border: 2px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.spam-description {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.size-option input[type="radio"]:checked + .size-card,
.size-card.selected {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  transform: translateY(-2px);
}

.size-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.size-card p {
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.size-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--brand-red));
}

/* Order Type Cards - reuse pizza size card structure */
.size-card.order-type h4.order-type-title {
  color: hsl(var(--brand-red)) !important;
}

.size-card.order-type p.order-type-desc {
  color: hsl(var(--foreground));
}

/* Pizza Flavors Selection */
.pizza-flavors-section {
  margin-bottom: 3rem;
}

.flavors-info {
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}
.flavors-info.left {
  text-align: left;
}

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.flavor-item {
  cursor: pointer;
}

.flavor-option {
  cursor: pointer;
}

.flavor-option input[type="checkbox"] {
  display: none;
}

.flavor-card {
  background: hsl(var(--card));
  border: 2px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

/* Estado desabilitado ao atingir limite de sabores */
.flavor-card.disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.flavor-option input[type="checkbox"][disabled] + .flavor-card {
  pointer-events: none;
}

.flavor-option input[type="checkbox"]:checked + .flavor-card {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  transform: translateY(-2px);
}

.flavor-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.flavor-card p {
  font-size: 0.875rem;
}

/* Pizza Border Options */
.pizza-border-section {
  margin: 24px 0 32px;
}
.border-title {
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: hsl(var(--primary));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid hsl(var(--primary));
  padding-bottom: 8px;
  display: inline-block;
}
.border-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  width: 100%;
}
.border-option input[type="radio"] {
  display: none;
}
.border-card {
  background: hsl(var(--card));
  border: 2px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 1rem 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 72px;
}
.border-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--secondary));
  color: #888;
}
.border-option input[type="radio"]:checked + .border-card {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.08);
  box-shadow: 0 6px 18px hsl(0 0% 0% / 0.25);
  transform: translateY(-2px);
}
.border-option input[type="radio"]:checked + .border-card .border-icon {
  background: hsl(var(--primary));
  color: hsl(var(--brand-red));
}
.border-card span {
  font-weight: 700;
  color: hsl(var(--foreground));
}
.border-option:hover .border-card {
  border-color: hsl(var(--primary));
}
.border-note {
  margin-top: 12px;
  font-style: italic;
  color: hsl(var(--muted-foreground));
}
/* Pizza Summary */
.pizza-summary {
  margin-bottom: 3rem;
}

/* Badges modernas para exibir borda no carrinho */
.badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  font-size: 0.75rem;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  background: hsl(var(--card));
}
.badge-primary {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.12);
}
.badge-amber {
  border-color: #f59e0b;
  color: #b45309;
  background: rgba(245, 158, 11, 0.12);
}
.badge-muted {
  color: hsl(var(--muted-foreground));
  border-color: hsl(var(--border));
  background: transparent;
}

.summary-card {
  background: hsl(var(--card));
  border: 2px solid hsl(var(--primary));
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.summary-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
}

.pizza-details {
  margin-bottom: 2rem;
}

.pizza-details > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid hsl(var(--border));
}

.pizza-details > div:last-child {
  border-bottom: none;
  font-weight: 600;
  color: hsl(var(--brand-red));
  font-size: 1.125rem;
}

.pizza-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Porções Section */
.porcoes-section {
  padding: 3rem 0;
}

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

/* Adicionais segue layout do .menu-grid, centralizado e responsivo */

.porcao-item {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}

.porcao-item:hover {
  border-color: hsl(var(--primary));
  transform: translateY(-2px);
}

.porcao-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.porcao-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.porcao-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--brand-red));
}

.porcao-description {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.porcao-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Cart Section */
.cart-section {
  padding: 3rem 0;
  background: hsl(var(--card));
  border-radius: 1.5rem;
  margin-top: 2rem;
}

.cart-content {
  max-width: 750px;
  margin: 0 auto;
}

.cart-items {
  margin-bottom: 2rem;
}

.empty-cart {
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-style: italic;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: hsl(var(--background));
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-item-price {
  color: hsl(var(--brand-red));
  font-weight: 600;
}

.btn-remove-item {
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-left: 8px;
}

.btn-remove-item i {
  font-size: 14px;
}

.btn-remove-item:hover {
  background-color: hsl(var(--brand-red));
  color: white;
  border-color: hsl(var(--brand-red));
  transform: scale(1.1);
}

.delivery-info {
  margin-bottom: 2rem;
}

.delivery-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: inherit;
  resize: vertical;
  min-height: 80px;
}

.form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

/* Campos de texto (ex.: Nome do cliente) */
.form-group input[type="text"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: inherit;
}

.form-group input[type="text"]::placeholder {
  color: hsl(var(--muted-foreground));
}

.form-group input[type="text"]:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

/* Campos de telefone (ex.: Número de Telefone) — alinhados ao estilo de texto */
.form-group input[type="tel"] {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: inherit;
}

.form-group input[type="tel"]::placeholder {
  color: hsl(var(--muted-foreground));
}

.form-group input[type="tel"]:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

.cart-summary {
  background: hsl(var(--background));
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.summary-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--brand-red));
  border-top: 1px solid hsl(var(--border));
  padding-top: 0.5rem;
  margin-top: 1rem;
}

#finalize-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-menu-icon {
    display: none;
  }

  .nav-mobile {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
  }

  .quality-content {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .location-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}

/* Animations reveal base */
/* Reveal Animation Styles */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

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

/* Optional: Add different delays for staggered animations */
.reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal:nth-child(4) {
  transition-delay: 0.3s;
}
.reveal:nth-child(5) {
  transition-delay: 0.4s;
}
.reveal:nth-child(6) {
  transition-delay: 0.5s;
}

/* FAQ: make reveal a bit slower only for FAQ items */
.faq-accordion .faq-item.reveal {
  transition:
    opacity 1.2s ease-out,
    transform 1.2s ease-out;
}

/* Swiper slides: directional reveal (left/right) when testimonials enter viewport */
@media (min-width: 600px) {
  .testimonialsSwiper .swiper-slide.reveal {
    transition:
      opacity 1s ease-out,
      transform 1s ease-out;
  }
  /* Left (active) slide comes from left */
  .testimonialsSwiper .swiper-slide-active.reveal {
    transform: translateX(-60px);
  }
  /* Right (next) slide comes from right */
  .testimonialsSwiper .swiper-slide-next.reveal {
    transform: translateX(60px);
  }
  .testimonialsSwiper .swiper-slide.reveal.visible {
    transform: translateX(0);
  }
}

.testimonials-section {
  padding: 6rem 0;
  background: transparent;
  position: relative;
}

.testimonials-section .container {
  position: relative;
}

.swiper {
  position: static !important;
  max-width: 1000px;
  padding: 2rem 0;
}

.testimonialsSwiper {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.testimonial-card {
  background: hsl(var(--card) / 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border) / 0.5);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  border-top: 4px solid hsl(var(--primary));
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  margin-bottom: 1.5rem;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quote-icon {
  font-size: 1.5rem;
  color: hsl(var(--primary));
  margin-bottom: 0.75rem;
  display: block;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(var(--foreground) / 0.9);
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  flex-shrink: 0;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin: 0 0 0.25rem 0;
}

.author-role {
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.7);
  margin: 0 0 0.5rem 0;
}

.author-rating {
  display: flex;
  gap: 0.25rem;
}

.author-rating .star {
  color: #ffd700;
  font-size: 0.875rem;
  width: 0.875rem;
  height: 0.875rem;
}

.testimonialsSwiper .swiper-button-prev,
.testimonialsSwiper .swiper-button-next {
  border-radius: 50%;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  font-size: 0.5rem;
  top: 70%;
  transform: translateY(-50%);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1rem !important;
}

.testimonialsSwiper .swiper-button-prev {
  left: 0%;
  top: 98%;
}

.testimonialsSwiper .swiper-button-next {
  right: 0%;
  top: 98%;
}

/* Swiper Navigation */
.testimonialsSwiper .swiper-pagination {
  position: relative;
  margin-top: 1rem;
}

.testimonialsSwiper .swiper-pagination-bullet {
  background: hsl(var(--muted-foreground));
  opacity: 0.5;
  transition: all 0.3s ease;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
  background: hsl(var(--primary));
  opacity: 1;
  transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonial-card {
    padding: 1.5rem;
    min-height: 250px;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .author-avatar {
    width: 2.25rem;
    height: 2.25rem;
  }

  .author-name {
    font-size: 0.95rem;
  }

  .author-role {
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .testimonialsSwiper .swiper-button-prev,
  .testimonialsSwiper .swiper-button-next {
    display: none;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 2rem 20px;
  }

  .testimonial-card {
    padding: 1.25rem;
    min-height: 220px;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }

  .quote-icon {
    font-size: 1.25rem;
  }
}

/* FAQ Section */
.faq-section {
  padding: 5rem 0;
}

.faq-accordion {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: hsl(var(--primary));
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  transition: color 0.3s ease;
}

.faq-trigger:hover {
  color: hsl(var(--brand-red));
}

.faq-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

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

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.faq-item.active .faq-content {
  max-height: 200px;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* Location Section */
.location-section {
  padding: 5rem 0;
  background: hsl(var(--card));
}

.location-content {
  display: grid;
}

/* Hero directional reveal: text from left, image from right */
@media (min-width: 768px) {
  .hero-text.reveal {
    transition:
      opacity 1s ease-out,
      transform 1s ease-out;
    transform: translateX(-60px);
  }
  .hero-image.reveal {
    transition:
      opacity 1s ease-out,
      transform 1s ease-out;
    transform: translateX(60px);
  }
  .hero-text.reveal.visible,
  .hero-image.reveal.visible {
    transform: translateX(0);
  }
}

/* Steps icons and numbers: pop scale-in */
.step-icon.reveal,
.step-number.reveal {
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.step-icon.reveal.visible,
.step-number.reveal.visible {
  opacity: 1;
  transform: scale(1);
}

/* --- Gelados Custom Styles --- */

/* Flavor Cards (Beautiful Design) */
.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.flavor-checkbox {
  cursor: pointer;
  position: relative;
  display: block;
}

.flavor-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.flavor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: hsl(var(--card));
  border: 2px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 120px;
  position: relative;
  overflow: hidden;
}

.flavor-card:hover {
  transform: translateY(-5px);
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 10px 20px -10px hsl(var(--primary) / 0.2);
}

.flavor-checkbox input:checked + .flavor-card {
  border-color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.05);
  box-shadow: 0 8px 24px hsl(var(--primary) / 0.15);
  transform: translateY(-2px);
}

.flavor-card::after {
  content: "\f00c"; /* FontAwesome check */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.8rem;
  color: #fff;
  background: hsl(var(--primary));
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0) rotate(-180deg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.flavor-checkbox input:checked + .flavor-card::after {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.flavor-name {
  font-weight: 600;
  color: hsl(var(--foreground));
  font-size: 1rem;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.flavor-price-tag {
  font-size: 0.85rem;
  color: hsl(var(--primary));
  font-weight: 700;
  margin-top: 0.5rem;
  background: hsl(var(--primary) / 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

/* Acai Size Options (Simple/Classic Design) */
.acai-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.acai-size-label {
  position: relative;
  cursor: pointer;
  min-width: 140px;
  flex: 1;
  max-width: 200px;
}

.acai-size-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.acai-size-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: all 0.2s ease;
  text-align: center;
  height: 100%;
}

.acai-size-label:hover .acai-size-card {
  background: hsl(var(--secondary));
  border-color: hsl(var(--muted-foreground));
}

.acai-size-label input:checked + .acai-size-card {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.1);
}

.acai-size-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.acai-size-price {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

.qty-control-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
  border-radius: var(--radius);
  max-width: 300px;
  margin: 1rem auto;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid hsl(var(--border));
  background: transparent;
  color: hsl(var(--foreground));
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.qty-btn:hover {
  border-color: hsl(var(--primary));
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
}

.qty-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: hsl(var(--primary));
  min-width: 40px;
  text-align: center;
}

/* Gelados Page Specific Styles */
/* Force higher specificity with ID or !important if needed, but clean class structure is better */

/* Category Toggle */
.category-toggle-container {
  display: flex !important;
  justify-content: center !important;
  background: hsl(var(--muted)) !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: var(--radius) !important;
  margin: 0 auto 2rem !important;
  max-width: 400px !important;
  gap: 1rem !important;
  width: 100% !important;
}

.toggle-btn {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.75rem 1rem !important;
  border: none !important;
  background: hsl(var(--background)) !important;
  color: hsl(var(--foreground)) !important;
  font-weight: 600 !important;
  border-radius: calc(var(--radius) - 4px) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  font-size: 1rem !important;
}

.toggle-btn.active {
  background: hsl(var(--primary)) !important;
  color: hsl(var(--brand-red)) !important;
}

.toggle-btn i {
  font-size: 1.1rem !important;
}

/* Step Title overrides */
.step-title[style*="justify-content: center"] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  color: hsl(var(--foreground)) !important;
  font-size: 1.5rem !important;
  margin-bottom: 2rem !important;
  width: 100% !important;
  font-weight: 700 !important;
}

.step-title i,
.step-title svg {
  color: hsl(var(--primary)) !important;
  width: 1.5rem !important;
  height: 1.5rem !important;
}

/* Quantity Control */
.qty-control-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  background: hsl(var(--card)) !important;
  border: 1px solid hsl(var(--border)) !important;
  padding: 1.5rem !important;
  border-radius: var(--radius) !important;
  max-width: 300px !important;
  margin: 1.5rem auto !important;
  box-shadow: var(--shadow-sm) !important;
}

.qty-control {
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
  margin-top: 0.5rem !important;
}

.qty-btn {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  border: 2px solid hsl(var(--border)) !important;
  background: transparent !important;
  color: hsl(var(--foreground)) !important;
  font-size: 1.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  padding: 0 !important;
}

.qty-btn:hover {
  border-color: hsl(var(--primary)) !important;
  color: hsl(var(--primary)) !important;
  background: hsl(var(--primary) / 0.1) !important;
}

.qty-value {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: hsl(var(--primary)) !important;
  min-width: 60px !important;
  text-align: center !important;
  display: block !important;
}

/* Category Toggle Styles */
.category-toggle {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: center;
}

.category-toggle::-webkit-scrollbar {
  display: none;
}

.category-btn {
  background: transparent;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--muted-foreground));
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.category-btn:hover {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.category-btn.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}

@media (max-width: 768px) {
  .category-toggle {
    justify-content: flex-start;
    padding-bottom: 0.5rem;
  }
}
/* Sorvete: card de bolas com largura responsiva */
.sorvete-bola-card {
  max-width: 300px;
  margin: 0 auto;
}

#options-sorvete {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

/* --- Novos Estilos Premium para Configuração de Pizza (Borda e Sabores) --- */

/* Card de Cabeçalho (Título e Preço) */
.config-header-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-left: 6px solid hsl(var(--primary)); /* Destaque lateral mais forte */
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Sombra elegante */
  position: relative;
  overflow: hidden;
}

/* Efeito de brilho sutil no fundo */
.config-header-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background: linear-gradient(to left, hsl(var(--primary) / 0.05), transparent);
  pointer-events: none;
}

.config-header-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1;
}

.config-title {
  font-size: 1.5rem; /* Título grande */
  font-weight: 800;
  color: hsl(var(--foreground));
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.config-subtitle {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.config-price {
  font-size: 2rem; /* Preço bem destacado */
  font-weight: 900;
  color: hsl(var(--brand-red));
  white-space: nowrap;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

/* Card de Instruções e Contador */
.flavors-instructions-card {
  background: linear-gradient(
    to right bottom,
    #ffffff,
    #f8fafc
  ); /* Gradiente sutil */
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.25rem 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.instructions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  padding-bottom: 0.75rem;
}

.instructions-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.flavor-counter {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.flavor-counter:hover {
  transform: scale(1.05);
}

.instructions-note {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.instructions-note::before {
  content: "\f05a"; /* Info circle icon do FontAwesome */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: hsl(var(--primary));
}

/* Responsividade para os novos cards */
@media (max-width: 600px) {
  .config-header-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    gap: 1rem;
  }

  .config-price {
    align-self: flex-end;
  }
}

/* Pizza Stepper Layout (New Design) */
.pizza-stepper-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
}

.pizza-step-section h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-number {
  background-color: hsl(var(--brand-red));
  color: white;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}

/* Grids */
.stepper-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .stepper-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stepper-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .stepper-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Cards */
.stepper-card {
  background-color: #111;
  border: 1px solid #333;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 160px;
}

.stepper-card:hover {
  border-color: var(--zu-yellow);
}

.stepper-card.selected {
  border: 2px solid var(--zu-yellow) !important;
  background: hsl(var(--primary) / 0.1);
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
  transform: translateY(-2px);
}

.stepper-card-title {
  color: var(--zu-yellow) !important;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stepper-card-desc {
  color: #fff !important; /* White text for slices */
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.stepper-card-price {
  color: hsl(var(--brand-red)) !important;
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: auto;
}

/* Border Chips */
.border-chips-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.border-chip {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  border: 2px solid hsl(var(--border));
  background-color: hsl(var(--card));
  font-weight: 700;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: all 0.2s;
}

.border-chip.selected {
  background-color: hsl(var(--brand-red));
  color: white;
  border-color: hsl(var(--brand-red));
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Sticky Footer */
.stepper-footer {
  background-color: hsl(var(--card));
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid hsl(var(--border));
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  bottom: 1rem;
  z-index: 50;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .stepper-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: hsl(var(--secondary));
  padding: 0.5rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
}

.qty-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--card));
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: transform 0.1s;
}

.qty-btn:active {
  transform: scale(0.95);
}

.add-btn {
  width: 100%;
  background-color: hsl(var(--brand-red));
  color: white;
  font-weight: 900;
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.2);
  transition: filter 0.2s;
}

.add-btn:hover {
  filter: brightness(1.1);
}

@media (min-width: 768px) {
  .add-btn {
    width: auto;
  }
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 2px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.stepper-card.selected .check-icon {
  background-color: hsl(var(--brand-red));
  border-color: hsl(var(--brand-red));
  font-size: 1.75rem;
}

.instructions-header {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

/* Estilos para Gelados - Picolés */
.product-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  border-color: hsl(var(--primary));
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 0;
}

.product-type {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--muted));
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  align-self: flex-start;
  font-weight: 500;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: hsl(var(--brand-red));
  margin-top: 0.5rem;
}

.add-picole-btn {
  width: 100%;
  margin-top: auto;
}

/* Ajuste para botões de categoria ativos */
.category-btn.active {
  background: hsl(var(--primary));
  color: hsl(var(--brand-red));
  border-color: hsl(var(--primary));
  font-weight: 700;
}

/* Ajuste para o grid de picolés */
#picoles-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Chips de categorias de Picolés (reuso do client-menu) */
.category-chip {
  white-space: nowrap;
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.2s ease-in-out;
  border: 1px solid #374151;
  background-color: #111111;
  color: #e5e7eb;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  flex-shrink: 0;
  background-image: none;
  display: inline-flex;
  align-items: center;
}
.category-chip:hover {
  border-color: #facc15; /* amarelo */
  color: #dc2626; /* vermelho */
}
.category-chip:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.5);
}
.category-chip.active {
  background: #facc15; /* amarelo */
  border-color: #facc15;
  color: #dc2626; /* vermelho */
  transform: scale(1.05);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Comportamento de arraste para o container de chips */
#picoles-toggle {
  cursor: grab;
  scroll-behavior: smooth;
}
#picoles-toggle.dragging {
  cursor: grabbing;
}

/* Sticky Footer Styles (padronizado entre páginas) */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 9999;
  border-top: 5px solid hsl(var(--primary));
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.footer-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-total-display {
  display: flex;
  flex-direction: column;
}

.total-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .total-label {
    font-size: 0.75rem;
  }
}

.total-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: hsl(var(--brand-red));
}

.nav-buttons {
  display: flex;
  gap: 12px;
}

.nav-btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s transform;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.nav-btn:active {
  transform: scale(0.95);
}

.btn-next {
  background-color: hsl(var(--brand-red));
  color: white !important;
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}

.btn-next:hover {
  background-color: hsl(var(--brand-red) / 0.8);
  box-shadow: 0 6px 15px rgba(220, 53, 69, 0.4);
}

.btn-prev {
  background-color: #e9ecef;
  color: #495057;
}

.btn-prev:hover {
  background-color: #dee2e6;
  color: #212529;
}

@media (max-width: 576px) {
  .sticky-footer {
    padding: 12px 0;
  }
  .total-value {
    font-size: 1.1rem;
  }
  .nav-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
/* Featured Products Section */
.featured-products-section {
  padding: 5rem 0 3rem;
  position: relative;
}

.featured-products-section .container {
  position: relative;
}

.featured-grid {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .featured-grid {
    flex-direction: column;
  }
}

.featured-media {
  position: relative;
  width: 100%;
}

.productsSwiper {
  position: relative;
  max-width: 500px;
  z-index: 2;
  padding: 1rem 0 2rem;
}

.product-slide-card {
  display: block;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.product-image {
  position: relative;
  aspect-ratio: 4/4;
  overflow: hidden;
  background: hsl(var(--secondary));
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gradient-fallback {
  background:
    radial-gradient(
      circle at 30% 20%,
      hsl(var(--primary) / 0.3) 0%,
      transparent 60%
    ),
    hsl(var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
}

.productsSwiper .swiper-button-prev,
.productsSwiper .swiper-button-next {
  color: hsl(var(--brand-red));
  background: hsl(var(--primary));
  padding: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .productsSwiper .swiper-button-prev,
  .productsSwiper .swiper-button-next {
    display: none;
  }
}

.productsSwiper .swiper-pagination-bullet {
  background: hsl(var(--muted-foreground));
  opacity: 0.5;
}

.productsSwiper .swiper-pagination-bullet-active {
  background: hsl(var(--brand-red));
  opacity: 1;
}

.featured-text {
  background: transparent;
  max-width: 500px;
  padding: 1.5rem;
  width: 100%;
}

.featured-text-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.featured-text-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary)) !important;
}

.featured-text-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  color: hsl(var(--brand-red));
}

.featured-text-desc {
  color: hsl(var(--foreground));
  margin: 0.5rem 0 1rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.featured-text-cta .btn {
  display: inline-flex;
  color: hsl(var(--brand-red));
  align-items: center;
  gap: 0.5rem;
}

/* Botão global abaixo do grid de destaques */
.featured-section-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

/* Ajustes finos para telas pequenas */
@media (max-width: 576px) {
  .featured-products-section {
    padding: 3rem 0 2rem;
  }
  .featured-grid {
    gap: 1rem;
  }
  .productsSwiper {
    width: 100%;
    max-width: 100% !important;
    padding: 0.5rem 0 1.5rem;
  }
  .featured-text {
    padding: 1rem;
  }
  .featured-text-title {
    font-size: 1.125rem;
  }
  .featured-text-desc {
    font-size: 0.95rem;
  }
}
