:root {
  --primary-color: #ffc800;
  /* Vermelho escuro da marca */
  --text-color: #555555;
  --bg-color: #ffffff;
  --font-family: 'Inter', sans-serif;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: #f9f9f9;
  /* Cor de fundo provisória para contraste */
}

.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* Header */
.header {
  background: linear-gradient(183deg, black, #393939);
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 4px solid #ffc900;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

/* Navegação Desktop */
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-list a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
  text-transform: capitalize;
}

.nav-list a:hover {
  color: var(--primary-color);
}

.btn-order {
  background-color: #ffb201;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-order:hover {
  background-color: #a00000;
  transform: translateY(-2px);
}

/* Botão Mobile Menu (Hamburguer) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--primary-color);
  position: relative;
  transition: background-color 0.3s ease;
  border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  left: 0;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
}

/* ========================================= */
/* Hero Section */
/* ========================================= */
.hero {
  position: relative;
  height: calc(50vh - var(--header-height));
  min-height: 600px;
  background: #000 url('../images/back-hero-desk.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  margin-top: var(--header-height);
  overflow: hidden;
  border-bottom: 3px solid #ffc900;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  /* width: 100vh; */
  height: 100vw;
  transform: translate(-50%, -50%) rotate(90deg);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 992px) {
  .hero {
    background-image: url('../images/back-hero-mob.jpg');
  }

  .hero-video-bg {
    display: block;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero h1 {
  font-size: 64px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero p {
  font-size: 20px;
  color: #f0f0f0;
  max-width: 800px;
  line-height: 1.5;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-primary {
  background-color: #ffc800;
  color: #191919;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 4px 4px 0px #fff8d6;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  background-color: #000000;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px #ffc107;
  color: #ffc800;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ========================================= */
/* Stats Section (Balões) */
/* ========================================= */
.stats-section {
  padding: 20px 0 80px 0;
  background-color: #f4f4f4;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  /* Marca d'água bem suave */
  background-image: url('../images/stats-pattern.png');
  background-size: 750px 300px;
  /* Tamanho exato do tile gerado */
  background-repeat: repeat;
  pointer-events: none;
  z-index: 1;
}

.stats-container {
  display: flex;
  position: relative;
  z-index: 2;
  gap: 40px;
  /* Aumentado gap entre os cards */
  justify-content: center;
  flex-wrap: wrap;
}

.stat-card {
  position: relative;
  border-radius: 20px;
  padding: 70px 30px 40px 30px;
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-top: 50px;
  backdrop-filter: blur(10px);

  /* Estado Inicial Escondido */
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, box-shadow 0.3s ease;
}

/* Atrasos individuais para criar o efeito cascata */
.stat-card:nth-child(1) {
  transition-delay: 0s, 0s, 0s;
}

.stat-card:nth-child(2) {
  transition-delay: 0.2s, 0.2s, 0s;
}

.stat-card:nth-child(3) {
  transition-delay: 0.4s, 0.4s, 0s;
}

/* Classe ativada via JS */
.stat-card.show {
  opacity: 1;
  transform: translateY(0);
  animation: floatBounce 4s ease-in-out infinite;
}

@keyframes floatBounce {

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

  50% {
    transform: translateY(-15px);
  }
}

.stat-card:nth-child(1).show {
  animation-delay: 0.8s;
}

.stat-card:nth-child(2).show {
  animation-delay: 1s;
}

.stat-card:nth-child(3).show {
  animation-delay: 1.2s;
}

.stat-card.show:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  /* Sobrescreve a transição para deixar o hover ágil */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition-delay: 0s, 0s !important;
  animation-play-state: paused;
}

/* O triângulo (tail) de cada balão */
.stat-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid;
  /* A cor é herdada pelas classes bg-red/bg-yellow */
}

/* Círculo de ícone sobreposto */
.stat-icon-wrapper {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid #f4f4f4;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon-wrapper {
  transform: translateX(-50%) scale(1.1) rotate(5deg);
}

.stat-title {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.stat-divider {
  width: 40px;
  height: 4px;
  margin: 0 auto 20px auto;
  border-radius: 2px;
  background-color: #ffc107;
  /* Cor padrão do divider */
}

.stat-desc {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  opacity: 0.9;
}

/* Modificadores de Cores (Balões) */
.bg-red {
  background: linear-gradient(145deg, #505050, #000000);
  color: #ffffff;
  /* border: 1px solid rgba(255, 255, 255, 0.05); */
  filter: drop-shadow(0px 7px 0px rgb(255 187 0));
}

.bg-red::after {
  border-top-color: #111111;
}

.bg-red .stat-icon-wrapper {
  background: linear-gradient(135deg, #979797, #181818);
  color: #ffffff;
}

.bg-yellow {
  background: linear-gradient(145deg, #ffdc33, #ffb100);
  color: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.5);
  filter: drop-shadow(0px 6px 0px rgba(0, 0, 0, 0.8));
}

.bg-yellow::after {
  border-top-color: #ffbb0c;
}

.bg-yellow .stat-icon-wrapper {
  background: linear-gradient(135deg, #ffc746, #ffb100);
  color: #f4f4f4;
}

.bg-yellow .stat-divider {
  background-color: #2a2a2a;
}

/* Estilos Mobile */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  /* Esconde o menu original e transforma em sidebar */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    /* Começa escondido */
    width: 280px;
    height: 100vh;
    background-color: black;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  }

  .nav.active {
    right: 0;
    /* Aparece ao adicionar classe active */
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
  }

  .nav-list a {
    font-size: 18px;
  }

  .btn-order {
    text-align: center;
    width: 100%;
  }

  /* Animação do Hamburguer para "X" quando ativo */
  .menu-toggle.active .hamburger {
    background-color: transparent;
  }

  .menu-toggle.active .hamburger::before {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Hero Mobile Styles */
  .hero {
    background-image: url('../images/back-hero-mob.jpg');
    height: auto;
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .hero h1 .hero-title-1 {
    font-size: 60px;
    line-height: 0.9;
    /* margin: 0 0 10px 0; */
  }

  .hero h1 .hero-title-2 {
    font-size: 37px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* ========================================= */
/* Recomendação do Chef Section */
/* ========================================= */
.chef-recommendation {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(45deg, #050505 0%, #1f1f1f 100%);
  background-size: 20px 20px, 100% 100%;
  background-color: #0a0a0a;
}

.chef-container {
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.chef-recommendation .section-title {
  color: #ffffff;
}

/* Desktop Infinite Carousel */
.chef-gallery-desktop {
  overflow: hidden;
  width: 100%;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.carousel-track {
  display: grid;
  grid-template-rows: 1fr;
  grid-auto-flow: column;
  gap: 20px;
  width: max-content;
  margin-bottom: 20px;
}

.carousel-track:last-child {
  margin-bottom: 0;
}

.track-left {
  animation: scrollLeft 30s linear infinite;
}

.track-right {
  animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(calc(-50% - 10px));
  }

  100% {
    transform: translateX(0);
  }
}

.carousel-track:hover {
  animation-play-state: paused;
}

.chef-item {
  position: relative;
  width: 170px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

a.chef-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.chef-item-link {
  cursor: pointer;
}

.chef-item:hover {
  transform: scale(1.05);
}

.chef-item .chef-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #222;
  display: block;
}

.chef-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.chef-overlay span {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 0 10px;
  text-transform: capitalize;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Mobile Crossfade Grid */
.chef-gallery-mobile {
  display: none;
}

.mobile-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background-color: #222;
}

.mobile-slot img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.mobile-slot .chef-overlay {
  z-index: 3;
}

.mobile-slot img.fading-out {
  opacity: 0;
}

@media (max-width: 992px) {
  .chef-gallery-desktop {
    display: none;
  }

  .chef-gallery-mobile {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .chef-gallery-mobile {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================= */
/* Units Section */
/* ========================================= */
.units-section {
  background-color: #f6f6f6;
  padding: 100px 0;
}

.units-container {
  flex-direction: column;
}

.units-collapsed {
  max-height: 480px;
  overflow: hidden;
  position: relative;
}

.units-collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(216, 200, 198, 0), #f6f6f6);
  z-index: 10;
  pointer-events: none;
}

.units-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
}

.units-subtitle {
  color: #ffb201;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.units-title {
  color: #3a1e1d;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.units-desc {
  color: #5c4342;
  font-size: 16px;
  line-height: 1.6;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}

.unit-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 30px;
  color: #333;
}

.unit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.unit-name {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid #ffb201;
  padding-bottom: 10px;
  display: inline-block;
}

.unit-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
}

.unit-detail span {
  font-weight: 600;
}

.unit-icon {
  width: 18px;
  height: 18px;
  color: #ffb201;
  flex-shrink: 0;
}

.unit-schedule {
  margin-top: auto;
  padding-top: 20px;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  border-left: 4px solid #ffb201;
}

.schedule-title {
  font-weight: 700;
  color: #111;
  margin-bottom: 0;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.schedule-title::-webkit-details-marker {
  display: none;
}

.schedule-title::after {
  content: '▼';
  font-size: 12px;
  color: #ffb201;
  transition: transform 0.3s ease;
}

details.unit-schedule[open] .schedule-title::after {
  transform: rotate(180deg);
}

@media (max-width: 992px) {
  .units-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .units-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================= */
/* Testimonials / Google Reviews Section */
/* ========================================= */
.testimonials-section {
  background-color: #111111;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/paralax2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.3;
  z-index: 0;
}

.testimonials-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.testimonials-header {
  flex: 0 0 30%;
  position: sticky;
  top: 120px;
}

/* Google Badge */
.google-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.google-g-logo {
  flex-shrink: 0;
}

.google-badge-text {
  font-size: 20px;
  font-weight: 600;
  color: #e8eaed;
  letter-spacing: -0.3px;
}

/* Rating Summary */
.google-rating-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.google-rating-number {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
}

.google-rating-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.google-rating-stars {
  display: flex;
  gap: 2px;
}

.google-rating-count {
  font-size: 13px;
  color: #9aa0a6;
  font-weight: 400;
}

.google-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #9aa0a6;
  margin: 0;
}

/* Cards Carousel */
.testimonials-carousel {
  flex: 0 0 65%;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

/* Testimonial Card */
.testimonial-card {
  flex: 0 0 calc(50% - 10px);
  min-width: 280px;
  background: #262626;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
}

/* Card Header with Avatar + Author + Google icon */
.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
}

.testimonial-author-info {
  flex: 1;
  min-width: 0;
}

.testimonial-author {
  font-weight: 600;
  font-size: 15px;
  color: #e8eaed;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-google-icon {
  flex-shrink: 0;
  opacity: 0.5;
  margin-left: auto;
}

/* Quote icon */
.testimonial-quote-icon {
  margin-bottom: 8px;
}

.testimonial-quote-icon svg path {
  fill: rgba(255, 255, 255, 0.1);
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.65;
  color: #bdc1c6;
  flex-grow: 1;
  margin: 0;
}

@media (max-width: 992px) {
  .testimonials-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials-header {
    flex: 1 1 100%;
    width: 100%;
    position: static;
  }

  .testimonials-carousel {
    flex: 1 1 100%;
    width: 100%;
  }

  .testimonial-card {
    flex: 0 0 85%;
  }
}

/* ========================================= */
/* News Section */
/* ========================================= */
.news-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.news-container {
  flex-direction: column;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 50px;
  text-align: center;
  letter-spacing: -1px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: #ffffff;
  border-radius: 4px;
  /* Slightly square like in the reference */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #ffb100;
  color: #111;
  font-weight: 800;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-content {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border: 1px solid #f0f0f0;
  border-top: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.news-content h3 {
  font-size: 22px;
  color: #111;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.news-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.news-read-more {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.news-read-more:hover {
  color: #800000;
}

/* ========================================= */
/* FAQ Section */
/* ========================================= */
.faq-section {
  padding: 80px 0;
  background-color: #f0f3f4;
}

.faq-container {
  flex-direction: column;
  max-width: 900px;
}

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 20px;
  font-weight: 400;
  color: #333;
  margin: 0;
}

.faq-toggle {
  font-size: 30px;
  font-weight: 300;
  color: #555;
  line-height: 1;
  display: inline-block;
  width: 20px;
  text-align: center;
}

.faq-answer {
  display: none;
  padding: 0 30px 30px 30px;
  border-top: none;
}

.faq-answer p {
  color: #888;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

/* Active State */
.faq-item.active .faq-question h3 {
  color: #111;
}

.faq-item.active .faq-toggle {
  color: #111;
}

/* ========================================= */
/* Franchise Section */
/* ========================================= */
.franchise-section {
  padding: 50px 0 50px 0;
  background-color: #ffffff;
}

.franchise-container {
  width: 100%;
}

.franchise-banner {
  background:
    url("../images/pizza-pattern.svg"),
    linear-gradient(135deg, #c00000 0%, #8a0000 100%);
  background-size: 160px 160px, 100% 100%;
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-radius: 16px;
  gap: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(192, 0, 0, 0.2);
}

.franchise-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 1;
}

.franchise-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.franchise-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.franchise-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 500px;
}

.btn-franchise {
  background-color: #ffc107;
  color: #111111;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-franchise:hover {
  background-color: #ffca2c;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

@media (max-width: 768px) {
  .franchise-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .franchise-content h2 {
    font-size: 28px;
  }

  .franchise-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .btn-franchise {
    width: 100%;
  }

  .section-title {
    font-size: 32px;
  }
}

/* ========================================= */
/* Formula Section */
/* ========================================= */
.formula-section {
  background-color: #151515;
  padding: 80px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #333;
}

.formula-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/paralax.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.3;
  z-index: 0;
}

.formula-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.formula-content {
  flex: 1;
  max-width: 60%;
}

.formula-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.f-icon {
  width: 22px;
  height: 22px;
  color: #ffffff;
  opacity: 0.8;
}

.formula-title {
  color: #ffc800;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.formula-quote {
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  position: relative;
  margin: 0 0 25px 0;
  color: #cccccc;
  padding: 0 10px;
}

.formula-quote::before {
  content: '❝';
  color: #ffc800;
  font-size: 40px;
  position: relative;
  top: 10px;
  margin-right: 5px;
  line-height: 0;
}

.formula-quote::after {
  content: '❞';
  color: #ffc800;
  font-size: 40px;
  position: relative;
  top: 15px;
  margin-left: 5px;
  line-height: 0;
}

.formula-author {
  color: #ffc800;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 40px;
}

.formula-logo img {
  height: 60px;
  width: auto;
}

.formula-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.formula-image img {
  max-width: 70%;
  height: auto;
  mix-blend-mode: screen;
  transform: scale(1.1) translateY(-10px);
}

.floating-pizza {
  animation: floatPizza 4s ease-in-out infinite;
}

@keyframes floatPizza {
  0% {
    transform: scale(1.1) translateY(-10px);
  }

  50% {
    transform: scale(1.1) translateY(-30px);
  }

  100% {
    transform: scale(1.1) translateY(-10px);
  }
}

/* Responsividade da Formula Section */
@media (max-width: 992px) {
  .formula-container {
    flex-direction: column;
    text-align: center;
  }

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

  .formula-icons {
    justify-content: center;
  }

  .formula-image {
    justify-content: center;
  }

  .formula-image img {
    transform: none;
    margin-top: 30px;
    max-height: 350px;
  }
}

/* ========================================= */
/* Footer */
/* ========================================= */
.footer {
  background-color: #1a1a1a;
  padding: 40px 0;
  color: #ffffff;
}

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

.footer-nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.footer-nav-list a {
  text-decoration: none;
  color: #cccccc;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav-list a:hover {
  color: #ffffff;
}

.footer-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column-reverse;
    gap: 30px;
    text-align: center;
  }

  .footer-nav-list {
    flex-direction: column;
    gap: 15px;
  }
}

/* Privacy and consent */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  width: 100%;
  margin-top: 18px;
  font-size: 0.78rem;
}

.footer-legal a,
.footer-legal button {
  color: rgba(255, 255, 255, 0.72);
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--color-primary);
}

.consent-banner[hidden],
.consent-modal[hidden] {
  display: none !important;
}

.consent-banner {
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.consent-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
  background: #111;
  border: 1px solid rgba(255, 196, 0, 0.42);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.consent-banner h2,
.consent-modal h2 {
  margin: 0 0 7px;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.consent-banner p,
.consent-modal p {
  max-width: 690px;
  margin: 0;
  color: #c7c7c7;
  font-size: 0.9rem;
  line-height: 1.5;
}

.consent-banner a,
.consent-modal a {
  display: inline-block;
  margin-top: 8px;
  color: #ffca0a;
  font-size: 0.82rem;
}

.consent-banner-actions,
.consent-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.consent-btn {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
}

.consent-btn-primary {
  color: #111;
  background: #ffca0a;
  border-color: #ffca0a;
}

.consent-btn-secondary {
  color: #fff;
  background: #242424;
  border-color: #444;
}

.consent-btn:focus-visible,
.consent-modal-close:focus-visible,
[data-consent-open]:focus-visible {
  outline: 3px solid rgba(255, 202, 10, 0.55);
  outline-offset: 2px;
}

.consent-modal {
  position: fixed;
  z-index: 10001;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
}

.consent-modal-panel {
  position: relative;
  width: min(100%, 620px);
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
  padding: 28px;
  color: #fff;
  background: #141414;
  border: 1px solid #383838;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.consent-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 36px;
  height: 36px;
  color: #fff;
  background: #272727;
  border: 1px solid #444;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 16px;
  color: #fff;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 6px;
}

.consent-option div {
  display: grid;
  gap: 4px;
}

.consent-option span {
  color: #aaa;
  font-size: 0.78rem;
  line-height: 1.4;
}

.consent-option input {
  width: 22px;
  height: 22px;
  accent-color: #ffca0a;
  flex: 0 0 auto;
}

.consent-always-on {
  color: #ffca0a !important;
  font-weight: 700;
  white-space: nowrap;
}

.consent-modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 12px 0 20px;
}

.consent-modal-open {
  overflow: hidden;
}

.consent-embed-placeholder {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: #fff;
  background: #191919;
}

.consent-embed-placeholder div {
  max-width: 390px;
}

.consent-embed-placeholder strong,
.consent-embed-placeholder span {
  display: block;
}

.consent-embed-placeholder strong {
  margin-bottom: 7px;
  font-size: 1rem;
}

.consent-embed-placeholder span {
  margin-bottom: 15px;
  color: #aaa;
  font-size: 0.82rem;
  line-height: 1.45;
}

.consent-embed-loaded .consent-embed-placeholder {
  display: none;
}

.consent-embed-loaded .loc-map-overlay {
  display: flex;
}

.policy-page {
  min-height: 100vh;
  color: #202020;
  background: #f4f4f2;
}

.policy-header {
  display: flex;
  align-items: center;
  height: 88px;
  padding: 0 6vw;
  background: #111;
  border-bottom: 4px solid #ffca0a;
}

.policy-header img {
  display: block;
  width: auto;
  height: 58px;
}

.policy-main {
  padding: 56px 20px 80px;
}

.policy-shell {
  max-width: 880px;
  margin: 0 auto;
}

.policy-eyebrow {
  color: #a92525;
  font-size: 0.76rem;
  font-weight: 800;
}

.policy-shell h1 {
  margin: 8px 0 4px;
  color: #111;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.policy-shell h2 {
  margin: 34px 0 8px;
  color: #191919;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.policy-shell p,
.policy-shell li {
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
}

.policy-shell a {
  color: #8d1d1d;
}

.policy-updated {
  margin: 0 0 34px;
  color: #777 !important;
  font-size: 0.82rem !important;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 34px;
  padding: 10px 18px;
  color: #111 !important;
  background: #ffca0a;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.policy-secondary-link {
  display: inline-block;
  margin-left: 18px;
  font-weight: 700;
}

.policy-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

.policy-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
}

.policy-table th,
.policy-table td {
  padding: 14px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  font-size: 0.88rem;
  line-height: 1.5;
}

.policy-table th {
  color: #fff;
  background: #191919;
}

.error-page {
  display: grid;
  place-items: center;
}

.error-shell {
  text-align: center;
}

@media (max-width: 760px) {
  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .consent-banner-content {
    display: grid;
    gap: 18px;
    padding: 18px;
  }

  .consent-banner-actions,
  .consent-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .consent-btn {
    width: 100%;
  }

  .consent-modal-panel {
    padding: 24px 18px;
  }

  .consent-option {
    padding: 14px 12px;
  }

  .policy-header {
    height: 76px;
    padding: 0 20px;
  }

  .policy-header img {
    height: 48px;
  }

  .policy-main {
    padding-top: 42px;
  }

  .policy-secondary-link {
    display: block;
    margin: 18px 0 0;
  }
}
