/* Reset e Configurações Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 80px;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 60px;
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}


.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover {
  color: #e91e63;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #e91e63;
  transition: width 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Banner */
.banner {
  position: relative;
  height: 600px;
  margin-top: 80px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: #e91e63;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: transform 0.3s, background 0.3s;
}

.cta-button:hover {
  background: #d81b60;
  transform: translateY(-3px);
}

/* Destaques */
#destaques {
  padding: 80px 0;
  background: #f8f8f8;
}

.destaques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.destaque-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.destaque-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.destaque-card h3 {
  padding: 15px;
  color: #333;
  font-size: 1.5rem;
}

.destaque-card p {
  padding: 0 15px 15px;
  color: #666;
}

.destaque-card:hover {
  transform: translateY(-5px);
}

/* Sobre */
#sobre {
  padding: 80px 0;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.sobre-texto p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.sobre-texto blockquote {
  font-style: italic;
  color: #e91e63;
  font-size: 1.3rem;
  margin: 30px 0;
  padding-left: 20px;
  border-left: 4px solid #e91e63;
}

/* Cardápio */
#cardapio {
  padding: 80px 0;
  background: #f8f8f8;
}

.cardapio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.cardapio-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.cardapio-item a {
  text-decoration: none;
  color: inherit;
}

.cardapio-item:hover {
  transform: translateY(-5px);
}

.cardapio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.cardapio-item h3 {
  margin: 15px 0;
  color: #e91e63;
}

.cardapio-item p {
  color: #666;
  margin-bottom: 15px;
}

/* Depoimentos */
#depoimentos {
  padding: 80px 0;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.depoimento {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Contato */
#contato {
  padding: 80px 0;
  background: #f8f8f8;
}

.contato-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contato-info p {
  margin: 15px 0;
}

.contato-info a {
  color: #e91e63;
  text-decoration: none;
}



/* Footer */
footer {
  background: #333;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
}

/* WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 999;
}

/* Estilos Gerais */
h2 {
  text-align: center;
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .sobre-content {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 2rem;
  }

  .banner-content h1 {
    font-size: 2rem;
  }
}

/* Estilo para link ativo no menu */
.nav-menu a.active {
  color: #e91e63;
}

.nav-menu a.active::after {
  width: 100%;
}

/* Menu mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background-color: #333;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .menu-toggle {
      display: block;
      z-index: 1001;
  }

  .nav-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100vh;
      background: rgba(255, 255, 255, 0.98);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 30px;
      transition: 0.3s ease-in-out;
      z-index: 1000;
  }

  .nav-menu.active {
      left: 0;
  }

  .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
      opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
  }

  .nav-menu a {
      font-size: 1.2rem;
      padding: 10px;
  }
}

/* Animação para scroll */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

section {
  animation: fadeInUp 0.6s ease-out;
}
