/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 4rem;

  /*========== Colors ==========*/
  --first-color: #d4af37;
  --first-color-alt: #b8860b;
  --title-color: #232323;
  --logo-dark-color: #162328;
  --text-color: #000;
  --text-color-light: #6c6c6c;
  --body-color: #ffffff;
  --container-color: #ffffff;
  --shadow-color: rgba(212, 175, 55, 0.2);

  /*========== Font and Typography ==========*/
  --body-font: "Poppins", sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font Weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margins ==========*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --mb-1: 0.5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  /*========== Z-index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 768px) {
  :root {
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*========== BASE ==========*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin-bottom: 0;
  padding-bottom: 0;
  border-top: none;
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Mobile: telas até 768px */
@media screen and (max-width: 768px) {
  /* Melhorias gerais de layout mobile */
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  /* Container principal */
  .bd-container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
  }

  /* Seções com melhor espaçamento */
  .section {
    padding: 2rem 0;
  }

  /* Títulos responsivos */
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
}

body {
  overflow-x: hidden;
}

/* Forçar footer a ocupar toda a largura */
footer.footer {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  left: 0 !important;
  right: 0 !important;
  max-width: none !important;
  position: relative !important;
}

/* Animações profissionais */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Aplicar animações */
.section-title {
  animation: fadeInUp 0.8s ease-out;
}

.foods_content {
  animation: fadeInUp 0.6s ease-out;
}

.foods_content:nth-child(2) {
  animation-delay: 0.1s;
}

.foods_content:nth-child(3) {
  animation-delay: 0.2s;
}

.foods_content:nth-child(4) {
  animation-delay: 0.3s;
}
body {
  margin-top: var(--header-height);
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .footer p,
  .footer .footer_copy,
  .footer .legal_links {
    margin-bottom: 0;
  }
}

/*========== CSS Reset ==========*/
h1,
h2,
h3,
p,
ul {
  margin: 0;
}
ul {
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}

/*========== CLASS CSS ==========*/
.section {
  padding: 7rem 0 2rem;
}
.section-title,
.section-subtitle {
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--first-color),
    var(--first-color-alt)
  );
  border-radius: 2px;
}
.section-title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-3);
}
.section-subtitle {
  display: block;
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin-bottom: var(--mb-1);
}

/*========== LAYOUT ==========*/
.bd-container {
  max-width: 960px;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}
.bd-grid {
  display: grid;
  gap: 1.5rem;
}
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(253, 245, 230, 0.95)
  );
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/*========== NAV ==========*/
.nav {
  max-width: 1024px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  /* Header mobile melhorado */
  .l-header {
    padding: 0 1rem;
  }

  .nav_logo {
    font-size: 1.2rem;
  }

  .nav_toggle {
    font-size: 1.5rem;
  }

  /* Menu mobile melhorado */
  .nav_menu {
    position: fixed;
    top: -100%;
    left: 5%;
    width: 90%;
    padding: 2.5rem 0 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(253, 245, 230, 0.95));
    backdrop-filter: blur(15px);
    transition: 0.4s;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    border-radius: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
  }

  .nav_item {
    margin-bottom: 1.5rem;
  }

  .nav_link {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
  }
}
.nav_item {
  margin-bottom: var(--mb-3);
}
.nav_link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.nav_link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--first-color),
    var(--first-color-alt)
  );
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav_link:hover::before {
  width: 80%;
}

.nav_link:hover {
  color: var(--first-color);
  background: rgba(212, 175, 55, 0.1);
}
.hidden_item {
  display: none;
}
.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  visibility: visible;
  z-index: 100;
}
/*Estilização do ícone do menu hambúrguer:*/
.menu-icon {
  font-size: 1.5rem;
  color: var(--text-color);
  transition: 0.3s;
}
.menu.opened .menu-icon {
  transform: rotate(90deg);
}
.nav_logo {
  color: var(--logo-dark-color);
  font-size: 1.1rem;
}
.nav_logo span {
  display: block;
  margin-top: -0.8rem;
  color: var(--first-color);
}
.nav_logo:hover {
  color: var(--first-color);
}
.nav_link {
  transition: 0.3s;
}
.nav_link:hover {
  color: var(--first-color-alt);
}

/* Show Menu */
.show-menu {
  top: calc(var(--header-height) + 1rem);
  opacity: 1;
  visibility: visible;
}

/* Hide hamburger when menu is open */
.menu-opened .nav_toggle .menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Active Menu */
.active-link {
  color: var(--first-color);
}

/* Change background header */
.scroll-header {
  box-shadow: 0 2px 4px var(--shadow-color);
}

/* Scroll Top */
.scrollTop {
  position: fixed;
  right: 1rem;
  bottom: -20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem;
  background: linear-gradient(
    135deg,
    var(--first-color),
    var(--first-color-alt)
  );
  border-radius: 0.4rem;
  z-index: var(--z-tooltip);
  transition: 0.4s;
  visibility: hidden;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
.scrollTop:hover {
  background: linear-gradient(135deg, var(--first-color-alt), #8b6914);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}
.scrollTop_icon {
  font-size: 1.8rem;
  color: var(--body-color);
}

/* Show scrollTop */
.show-scroll {
  visibility: visible;
  bottom: 1.5rem;
}

/*========== HOME ==========*/
.home_container {
  margin-top: -1rem;
  height: calc(100vh - var(--header-height));
  align-content: center;
}
.home_title {
  font-size: var(--big-font-size);
  color: var(--first-color);
  margin-bottom: var(--mb-1);
}
.home_subtitle {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-4);
}
.home_img {
  width: 300px;
  height: 300px;
  justify-self: center;
  border-radius: 20px;
  border: 4px solid var(--first-color);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
  transition: 0.3s;
  object-fit: cover;
  object-position: center;
}
.home_img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.4);
}

/*========== BUTTONS ==========*/
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    var(--first-color),
    var(--first-color-alt)
  );
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  font-weight: var(--font-semi-bold);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  background: linear-gradient(135deg, var(--first-color-alt), #8b6914);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

/*========== ABOUT ==========*/
.about_data {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.about_description {
  margin-bottom: var(--mb-3);
}

/*========== SERVICES ==========*/
.services_container {
  row-gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.services_content {
  text-align: center;
}
.services_img {
  font-size: 3rem;
  color: var(--first-color);
  margin-bottom: var(--mb-2);
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
  transition: 0.3s;
}
.services_content:hover .services_img {
  color: var(--first-color-alt);
  transform: scale(1.1);
}
.services_title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}
.services_description {
  padding: 0 1.5rem;
}

/*========== FOODS ==========*/
.foods_container {
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}
.foods_content {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(253, 245, 230, 0.8)
  );
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
  padding: 2rem;
  transition: all 0.4s ease;
  min-height: 420px;
  overflow: hidden;
}
.foods_content:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.25);
  border-color: var(--first-color-alt);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(253, 245, 230, 0.9)
  );
}
.foods_img {
  width: 140px;
  height: 140px;
  align-self: center;
  margin-bottom: 1.5rem;
  border-radius: 25px;
  border: 3px solid var(--first-color);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
  transition: all 0.4s ease;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 2;
}
.foods_content:hover .foods_img {
  border-color: var(--first-color-alt);
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}
/* Novos estilos para cards melhorados */
.foods_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.foods_name {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
  text-align: center;
}

.foods_description {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-1);
  line-height: 1.4;
  font-style: italic;
  text-align: center;
}

.foods_pricing {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08),
    rgba(184, 134, 11, 0.12)
  );
  backdrop-filter: blur(5px);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: inset 0 2px 10px rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.foods_pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--first-color),
    var(--first-color-alt)
  );
}

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

.price_label {
  font-size: var(--small-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.price_value {
  font-size: var(--normal-font-size);
  color: var(--first-color);
  font-weight: var(--font-semi-bold);
}

.price_duration {
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  text-align: center;
  font-style: italic;
  margin-top: 0.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.foods_button {
  position: absolute;
  bottom: -0.5rem;
  right: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  border-radius: 0.6rem;
  font-size: 0.75rem;
  font-weight: var(--font-semi-bold);
  transition: all 0.3s ease;
  z-index: 10;
}

.foods_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/*========== CONTACT ==========*/
.contact_container {
  text-align: center;
}
.contact_description {
  margin-bottom: var(--mb-2);
}
.contact_buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact_whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact_whatsapp:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.contact_instagram {
  background: linear-gradient(135deg, #e4405f, #c13584);
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact_instagram:hover {
  background: linear-gradient(135deg, #c13584, #833ab4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

/*========== FOOTER ==========*/
.footer {
  background: linear-gradient(
    135deg,
    var(--first-color) 0%,
    var(--first-color-alt) 50%,
    var(--first-color) 100%
  );
  padding: 5rem 0 0;
  position: relative;
  overflow: visible;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  left: 0 !important;
  right: 0 !important;
  max-width: none !important;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(0, 0, 0, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Footer Top Section */
.footer_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 1000px;
}

.footer_brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer_logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: var(--font-bold);
}

.logo_text {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: var(--font-bold);
}

.logo_accent {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  font-weight: var(--font-bold);
}

.footer_tagline {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: var(--font-semi-bold);
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.footer_socials {
  display: flex;
  gap: 1rem;
}

.social_link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: white;
}

.social_link.instagram {
  background: linear-gradient(135deg, #e4405f, #c13584);
  color: white;
}

.social_link.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.social_link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social_link i {
  font-size: 1.2rem;
}

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

.contact_item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact_item i {
  font-size: 1.5rem;
  color: var(--first-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact_info h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: var(--font-bold);
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.contact_info p {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: var(--font-medium);
}

/* Footer Bottom Section */
.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  max-width: 1000px;
}

.footer_nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer_nav .nav_link {
  color: #ffffff;
  text-decoration: none;
  font-weight: var(--font-semi-bold);
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.footer_nav .nav_link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.footer_nav .nav_link:hover {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.footer_nav .nav_link:hover::after {
  width: 100%;
}

.footer_legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.footer_copy {
  color: #ffffff;
  font-size: 0.9rem;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: var(--font-medium);
}

.legal_links {
  display: flex;
  gap: 1rem;
}

.legal_link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: var(--font-medium);
}

.legal_link:hover {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/*========== SCROLL BAR ==========*/
::-webkit-scrollbar {
  width: 0.62rem;
  background: var(--container-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--first-color),
    var(--first-color-alt)
  );
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--first-color-alt), #8b6914);
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.4);
}

/*========== MEDIA QUERIES ==========*/
@media screen and (max-width: 480px) {
  .foods_container {
    /* Muda de 2 colunas pra 3 linhas: */
    grid-template-columns: max-content;
    justify-content: center;
  }
}
@media screen and (min-width: 590px) {
  .home_container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .contact_container,
  .contact_initial {
    text-align: initial;
  }

  .contact_container {
    grid-template-columns: 1.75fr 1fr;
    align-items: center;
  }
  .contact_buttons {
    justify-self: center;
  }
}
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .section {
    padding-top: 8rem;
  }

  .nav_logo {
    color: var(--logo-dark-color);
    font-size: 1.2rem;
  }
  /* Deixando o header sem menu hambúrguer: */
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav_list {
    display: flex;
  }
  .nav_item {
    margin-left: var(--mb-5);
    margin-bottom: 0;
  }
  .nav_toggle {
    display: none;
  }

  .home_container {
    height: 100vh;
    justify-items: center;
  }
  .home_container {
    margin-bottom: -3rem;
  }
  .services_container,
  .foods_container {
    margin-top: var(--mb-6);
  }

  .foods_container {
    grid-template-columns: repeat(3, 210px);
  }
  .foods_content {
    padding: 1.5rem;
  }
  .foods_img {
    width: 130px;
    height: 130px;
  }
}
@media screen and (min-width: 960px) {
  .home_container {
    margin-top: 1rem;
  }

  .nav_logo {
    color: var(--logo-dark-color);
    font-size: 1.3rem;
  }
  .nav_logo span {
    display: block;
    margin-top: -0.8rem;
    color: var(--first-color);
  }
  .nav_link {
    font-size: var(--small-font-size);
  }

  .home_title,
  .home_subtitle {
    font-size: var(--h1-font-size);
  }

  .bd-container {
    margin-left: auto;
    margin-right: auto;
  }

  .home_img {
    width: 500px;
    height: 500px;
    margin-top: var(--mb-1);
  }
}

/* Seção Home mobile */
@media screen and (max-width: 768px) {
  .home_container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .home_data {
    order: 2;
  }

  .home_img {
    order: 1;
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }

  .home_title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .home_description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }

  .button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Cards de procedimentos mobile */
@media screen and (max-width: 768px) {
  .foods_container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .foods_content {
    padding: 1.5rem;
    min-height: auto;
    margin: 0 auto;
    max-width: 350px;
  }

  .foods_img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
  }

  .foods_name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .foods_description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .foods_pricing {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .price_item {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .price_label {
    font-size: 0.8rem;
  }

  .price_value {
    font-size: 1rem;
    font-weight: var(--font-semi-bold);
  }

  .price_duration {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }

  .foods_button {
    position: static;
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    margin-top: 1rem;
  }
}

/* Footer Responsivo */
@media screen and (max-width: 768px) {
  .footer {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    left: 0 !important;
    right: 0 !important;
    padding: 2.5rem 0 0;
  }

  .footer_wrapper {
    padding: 0 1.5rem;
    align-items: center;
  }

  .footer_top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    width: 100%;
    max-width: 100%;
  }

  .footer_brand {
    text-align: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .footer_logo {
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }

  .footer_tagline {
    font-size: 1.2rem;
    font-weight: var(--font-semi-bold);
  }

  .footer_socials {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .social_link {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: var(--font-semi-bold);
    border-radius: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .footer_contact {
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .contact_item {
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
  }

  .contact_item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
  }

  .contact_item i {
    font-size: 1.8rem;
    color: var(--first-color);
  }

  .contact_info h4 {
    font-size: 1.2rem;
    font-weight: var(--font-bold);
    margin-bottom: 0.8rem;
  }

  .contact_info p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .footer_bottom {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    border-top: none;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .footer_nav {
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .footer_nav .nav_link {
    font-size: 1.1rem;
    font-weight: var(--font-semi-bold);
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    transition: all 0.3s ease;
  }

  .footer_nav .nav_link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .footer_legal {
    align-items: center;
    gap: 1rem;
  }

  .footer_copy {
    font-size: 1rem;
    font-weight: var(--font-medium);
  }

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

  .legal_link {
    font-size: 0.95rem;
    font-weight: var(--font-medium);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
  }

  .legal_link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }
}

@media screen and (max-width: 480px) {
  .footer_socials {
    flex-direction: column;
    align-items: center;
  }

  .social_link {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }

  .footer_nav {
    flex-direction: column;
    gap: 1rem;
  }

  .legal_links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
