/* BASE */
body {
  background-color: #ffe0e0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Merriweather', serif;
  margin: 0;
  padding: 0;
}

/* CABEÇALHO */
header {
  font-family: 'Merriweather', serif;
  background-color: #000;
  color: #ffe0e0;
  text-align: center;
  padding: 20px 10px;
}

nav {
  background-color: #0b5c00;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
  font-size: 1.2em;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #ffffff;
  background-color: #ffd0ef;
  padding: 5px 10px;
  border-radius: 5px;
}

/* CONTEÚDO */
.container {
  background-color: #ffe0e0;
  padding: 30px;
  min-height: 500px;
  font-size: 1.1em;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  font-size: 1.4em;
}

/* CARROSSEL */
.carousel {
  width: 100%;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel h2 {
  font-size: 2.2em;
  color: #0b5c00;
}

.carousel-track {
  display: flex;
  animation: scroll 10s linear infinite;
}

.carousel-track img {
  width: 100%;
  max-width: 800px;
  margin: 0 10px;
  border-radius: 8px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* RECEITAS */
.receitas {
  background-color: #ffe0e0;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  margin: 20px auto;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.receitas h2 {
  color: #0b5c00;
  margin-bottom: 10px;
  font-size: 2.2em;
}

.receitas p {
  color: #555;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.receitas b {
  color: #555;
  font-size: 1.3em;
}

.receitas img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-pdf {
  background-color: #024704;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
}

/* COMBOS */
.Combos {
  background-color: #ffe0e0;
  text-align: center;
}

.Combos img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin: 10px;
}

.Combos h2 {
  color: #0b5c00;
  font-size: 2.5em;
}

/* PROMOÇÕES */
.promocoes {
  background-color: #ffe0e0;
  padding: 50px 20px;
  text-align: center;
}

.promocoes h2 {
  color: #0b5c00;
  font-size: 2.5em;
  margin-bottom: 30px;
}

.promo-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.promo-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 400px;
  width: 90%;
  transition: transform 0.3s ease;
}

.promo-card:hover {
  transform: scale(1.02);
}

.promo-card img {
  width: 100%;
  height: auto;
}

.promo-text {
  padding: 20px;
}

.promo-text h3 {
  color: #b67e4f;
  font-size: 1.5em;
}

.promo-text p {
  font-size: 1em;
  color: #555;
}

.promo-text button {
  background-color: #0b5c00;
  color: #ffe0e0;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
}

.promo-text button:hover {
  background-color: #b67e4f;
}

/* FOOTER */
footer {
  text-align: center;
  background-color: #003300;
  color: #fff;
  padding: 20 rem;
  
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content div {
  flex: 1 1 250px;
  margin: 10px;
}

.footer-logo h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.footer-social a {
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
}

.footer-social a:hover {
  color: #000;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 1em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 20px;
  padding-top: 10px;
  font-size: 1em;
}

/* COOKIES */
#cookie-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 90%;
  background-color: #0b5c00;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

#accept-cookies-btn {
  background-color: #fff;
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#accept-cookies-btn:hover {
  background-color: #f0f0f0;
}

/* BOTÃO INSTAGRAM */
.instagram-box {
  position: fixed;
  left: 10px;
  bottom: 20px;
  background-color: #fcaddb;
  border-radius: 8px;
  padding: 20px;
  max-width: 90%;
  text-align: center;
  z-index: 9999;
}

.instagram-box img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.instagram-box p {
  font-size: 14px;
  color: #333;
}

.btn-instagram {
  background-color: #E1306C;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
}

.btn-instagram:hover {
  background-color: #C13584;
}

/* TÍTULOS */
h1, h2, h3, h4 {
  font-family: 'Lora', cursive;
  font-weight: 700;
  color: #162e00;
  text-align: center;
}

h1 { font-size: 3em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.6em; }
h4 { font-size: 1.4em; color: #fff; }

/* RESPONSIVO GERAL */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  nav a {
    margin: 10px 0;
    font-size: 1em;
  }

  h1 { font-size: 2.2em; }
  h2 { font-size: 1.6em; }
  h3 { font-size: 1.4em; }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .promo-container {
    flex-direction: column;
  }

  .carousel-track img {
    width: 90%;
  }

  .btn-pdf {
    width: 100%;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2em; }
  h2 { font-size: 1.4em; }

  .receitas, .container, main {
    padding: 15px;
  }

  .instagram-box {
    padding: 15px;
  }

  .promo-card {
    width: 100%;
  }
}




