:root {
  --cor-primaria: #f97316;   /* laranja suave */
  --cor-secundaria: #facc15; /* amarelo */
  --cor-escura: #1f2933;
  --cor-clara: #fff7ed;
  --cor-texto: #1f2933;
  --cor-texto-suave: #6b7280;
  --sombra-card: 0 10px 25px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;      /* rolagem suave */
  scroll-padding-top: 90px;     /* altura do header (ajuste se precisar) */
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cor-texto);
  background: #fff;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header / Navbar */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.05);
}

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cor-escura);
}

.logo-badge {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fed7aa, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(248, 113, 22, 0.4);
}

.logo-subtitle {
  font-size: 0.7rem;
  color: #6b7280;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

nav a {
  color: var(--cor-texto-suave);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cor-primaria), var(--cor-secundaria));
  transition: width 0.2s ease;
}

nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-whats-nav {
  background: #22c55e;
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
  border: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn-whats-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.5);
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  color: var(--cor-texto-suave);
  background: #fff;
  font-weight: 500;
}

/* Layout base */

main {
  min-height: 100vh;
}

section {
  padding: 3.5rem 1.25rem;
}

.section-container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--cor-escura);
}

.section-subtitle {
  font-size: 0.98rem;
  color: var(--cor-texto-suave);
  max-width: 560px;
}

/* Hero */

.hero {
  padding-top: 3rem;
  padding-bottom: 3.5rem;
  background: radial-gradient(circle at top left, #fff7ed 10%, #fee2e2 35%, #fff 70%);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(254, 215, 170, 0.7);
  color: #9a3412;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 0.8rem;
  color: var(--cor-escura);
}

.hero p {
  font-size: 0.98rem;
  color: var(--cor-texto-suave);
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.btn-primario {
  background: linear-gradient(90deg, var(--cor-primaria), #fb923c);
  color: white;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 18px 40px rgba(248, 113, 22, 0.5);
  font-size: 0.96rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-primario {
  background: linear-gradient(90deg, var(--cor-primaria), #fb923c);
  color: white;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 18px 40px rgba(248, 113, 22, 0.5);
  font-size: 0.96rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  animation: pulse-whats 2s ease-in-out infinite;
}

.btn-primario:hover {
  animation: none; /* para de pulsar no hover */
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 22px 50px rgba(248, 113, 22, 0.65);
}

@keyframes pulse-whats {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(248, 113, 22, 0.7);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 14px rgba(248, 113, 22, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(248, 113, 22, 0);
  }
}


.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.8rem;
  color: var(--cor-texto-suave);
}

.hero-meta span strong {
  color: var(--cor-escura);
}

.hero-figure {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}

.hero-main-img {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
  border: 2px solid rgba(248, 250, 252, 0.8);
}

.hero-fotos-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.hero-foto {
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, 0.9);
}

.hero-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.88);
  color: #f9fafb;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-tag span {
  font-size: 1rem;
}

/* Destaques */

.features {
  background: #fff;
  padding-top: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.feature-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
  box-shadow: var(--sombra-card);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.feature-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(248, 113, 22, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--cor-texto-suave);
}

/* Cardápio */

.cardapio {
  background: var(--cor-clara);
}

.cardapio-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.cardapio-etiqueta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b45309;
  font-weight: 600;
}

.cardapio-filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(251, 146, 60, 0.5);
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  background: #fff;
  color: #9a3412;
  font-weight: 500;
}

.cardapio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.menu-item-link {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra-card);
  background: #fff;
  border: 1px solid rgba(251, 146, 60, 0.16);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.menu-item-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  border-color: rgba(248, 113, 22, 0.6);
}

.menu-item-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-img-wrapper {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.menu-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.menu-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.8);
  color: #f9fafb;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.7rem;
}

.menu-body {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.menu-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cor-escura);
}

.menu-desc {
  font-size: 0.85rem;
  color: var(--cor-texto-suave);
  flex: 1;
}

.menu-preco {
  font-size: 0.88rem;
  font-weight: 600;
  color: #16a34a;
}

.menu-cta {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #0f766e;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

/* Galeria */

.galeria-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.galeria-item {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
}

.galeria-item span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(15, 23, 42, 0.88);
  color: #f9fafb;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
}

/* Sobre */

.sobre-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.sobre-texto p {
  font-size: 0.97rem;
  color: var(--cor-texto-suave);
  margin-bottom: 0.8rem;
}

.sobre-lista {
  list-style: none;
  margin-top: 0.5rem;
}

.sobre-lista li {
  font-size: 0.9rem;
  color: var(--cor-texto);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
}

.sobre-lista span {
  font-size: 1rem;
}

.sobre-selo {
  margin-top: 1rem;
  font-size: 0.83rem;
  color: #16a34a;
  font-weight: 600;
}

.sobre-foto {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

/* Contato */

.contato {
  background: #0f172a;
  color: #e5e7eb;
  padding-bottom: 2.5rem;
}

.contato .section-title {
  color: #f9fafb;
}

.contato .section-subtitle {
  color: #cbd5f5;
}

.contato-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  margin-top: 2rem;
  align-items: flex-start;
}

.contato-info {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.contato-info strong {
  color: #f9fafb;
}

.contato-info a {
  color: #fee2e2;
}

.contato-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn-contato-whats {
  background: #22c55e;
  color: #052e16;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.6);
  position: relative;
  animation: whats-wiggle 2.2s ease-in-out infinite;
}

@keyframes whats-wiggle {
  0% { transform: scale(1) rotate(0deg); }
  10% { transform: scale(1.05) rotate(1.5deg); }
  20% { transform: scale(1.05) rotate(-1.5deg); }
  30% { transform: scale(1.06) rotate(1deg); }
  40% { transform: scale(1.06) rotate(-1deg); }
  50% { transform: scale(1.05) rotate(0deg); }
  100% { transform: scale(1) rotate(0deg); }
}


.btn-contato-alt {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 0.8rem 1.2rem;
  font-size: 0.86rem;
  color: #e5e7eb;
  background: transparent;
}

.contato-mapa {
  background: rgba(15, 23, 42, 0.75);
  border-radius: 1.4rem;
  padding: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.contato-mapa iframe {
  border-radius: 1rem;
  border: none;
  width: 100%;
  height: 230px;
}

/* Rodapé */

footer {
  background: #020617;
  color: #9ca3af;
  font-size: 0.8rem;
  padding: 1.2rem 1.25rem;
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

/* Botão flutuante WhatsApp */

.whats-float {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 60;
}

.whats-float a {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 45px rgba(22, 163, 74, 0.65);
  color: #022c22;
  font-size: 1.7rem;
}

/* Responsivo */

@media (max-width: 960px) {
  nav ul {
    display: none; /* simplificado para mobile; pode trocar por menu hambúrguer depois */
  }

  .nav-container {
    padding-inline: 1rem;
  }

  .hero {
    padding-top: 2.3rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cardapio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .galeria-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sobre-grid,
  .contato-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  section {
    padding: 2.6rem 1rem;
  }

  .cardapio-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .galeria-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-figure {
    max-width: 100%;
  }

  .whats-float {
    right: 12px;
    bottom: 12px;
  }
}


/* ===== Carrossel de imagens nos cards do cardápio ===== */

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transform: translateX(0%);
  transition: transform 0.4s ease;
}

.carousel-img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* (opcional) deixa a tag "Bolos" por cima da imagem */
.carousel .menu-tag {
  position: absolute;
  top: 10px;
  left: 10px;
}

/* ===== Botão especial Instagram ===== */

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  background-size: 300%;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(214, 41, 118, 0.35);
  animation: ig-glow 3s ease infinite, ig-gradient 6s ease infinite;
}

/* Animação de brilho suave */
@keyframes ig-glow {
  0%   { transform: scale(1); box-shadow: 0 12px 32px rgba(214, 41, 118, 0.35); }
  50%  { transform: scale(1.03); box-shadow: 0 18px 45px rgba(214, 41, 118, 0.55); }
  100% { transform: scale(1); box-shadow: 0 12px 32px rgba(214, 41, 118, 0.35); }
}

/* Animação do degradê correndo */
@keyframes ig-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hover */
.btn-instagram:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 20px 50px rgba(214, 41, 118, 0.6);
}

