:root {
  --blue-deep: #0b6096;
  --blue-sea: #2a9df4;
  --sand: #f4e7d3;
  --olive: #708238;
  --green: #005450;
}

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

body {
  font-family: 'Cinzel', serif;
  color: #222;
  background-color: #f4e7d3;
  background-size: 200px;
  background-image: url("https://www.transparenttextures.com/patterns/arches.png");
  line-height: 1.6;
}

/* 🔹 CORREÇÃO CRÍTICA: Garantir que ícones Font Awesome usem a fonte correta */
i, .fa, .fas, .far, .fal, .fab {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
  font-style: normal;
}

.fas, .fa-solid {
  font-weight: 900 !important;
}
.far, .fa-list {
  font-weight: 400 !important;
}
.far, .fa-regular {
  font-weight: 400 !important;
}

.fab, .fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}

/* Hero Section */
.hero {
  min-height: 50vh;
  background-color: #0b3d5d;
  background-image: url("https://www.transparenttextures.com/patterns/xv.png");
  background-repeat: repeat;;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  color: white;
  position: relative;
  margin-bottom: 100px;
}

/* ↓ Só em telas grandes (PC) */
@media (min-width: 992px) {
  .hero {
    padding-top: 13rem;  /* empurra o conteúdo para baixo */
    padding-bottom: 6rem;
  }
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  line-height: 1.8;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Menu Sections */
.menu-section {
  padding: 01rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--blue-deep);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--olive), var(--sand));
  border-radius: 2px;
}

/* Couvert Grid */
.couvert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.couvert-item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.couvert-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border-color: var(--olive);
}

/* Carrossel de Imagens */
.image-carousel {
  width: 100%;
  height: 900px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sand), #e8dcc8);
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

.carousel-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  opacity: 0.25;
  background: linear-gradient(135deg, var(--sand), #e8dcc8);
  min-height: 450px;
  border-radius: 15px;
}

.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

/* Dish Cards */
.dish {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  margin: 3rem auto;
  max-width: 900px;
  transition: all 0.4s ease;
  border-left: 5px solid var(--blue-deep);
}

.dish:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.dish-content {
  padding: 1.5rem;
}

.dish-content h3 {
  color: var(--blue-deep);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.dish-content p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0.8rem;
}

/* Mimo Section */
.mimo-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--olive) 0%, #5a6b2c 100%);
  color: white;
  margin-top: 3rem;
}

.mimo-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mimo-image {
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.mimo-image::before {
  content: '🍪';
  opacity: 0.8;
}

.mimo-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.mimo-content h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--sand);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.mimo-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--blue-deep);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1000;
  text-decoration: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--blue-deep);
  transform: translateY(-5px);
  color: white;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
    padding: 3rem 1.5rem;
  }

  .menu-section {
    padding: 3rem 1.5rem;
  }

  .couvert-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dish-content {
    padding: 2rem 1.5rem;
  }

  .image-carousel {
    height: 500px;
  }

  .mimo-image {
    width: 150px;
    height: 150px;
    font-size: 4rem;
  }

  .mimo-section {
    padding: 3rem 1.5rem;
  }

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

  .footer-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-title::after {
    width: 60px;
  }

  .dish-content p {
    text-align: left;
  }
}
[id^="tipo_"] {
  font-family: 'Cinzel Decorative', serif;
  color: #0b6096;
  line-height: 1.5;
  height: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.btn-comprar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 60px 60px;
  min-height: 90px;
  font-size: 2rem;
}