/* ==========================================
   CONFIGURAÇÕES GERAIS E CORES
   ========================================== */
:root {
  --cor-principal: #d946ef; /* Cor de destaque (ex: Rosa/Roxo Cozinha) */
  --cor-principal-hover: #c084fc;
  --cor-escura: #1f2937;
  --cor-clara: #f9fafb;
  --cor-texto: #4b5563;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', 'Poppins', sans-serif;
  color: var(--var-texto);
  background-color: #ffffff;
  overflow-x: hidden;
}

main {
  margin-top: 70px;
}

.section {
  padding: 80px 5%;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #f472b6;
  margin-bottom: 15px;
}

.eyebrow.dark {
  color: var(--cor-principal);
}

h1, h2, h3 {
  color: var(--cor-escura);
  margin-top: 0;
}

/* ==========================================
   CABEÇALHO E BARRA DE NAVEGAÇÃO (NAVBAR)
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--cor-escura);
  font-size: 0.9rem;
  line-height: 1.2;
}

.logo-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: var(--cor-texto);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--cor-principal);
}

.nav-links a.nav-order {
  background: #25d366;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
}

/* ==========================================
   SECÇÃO HERO (INÍCIO)
   ========================================== */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background: #fdf2f8; /* Fundo suave alternativo */
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--cor-principal);
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background: var(--cor-principal);
  color: white;
}

.btn-primary:hover {
  background: var(--cor-principal-hover);
}

.btn-light {
  background: white;
  color: var(--cor-escura);
  border: 1px solid #e5e7eb;
}

.hero-badge {
  position: absolute;
  right: 5%;
  bottom: 10%;
  background: white;
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-weight: 600;
}

/* ==========================================
   SECÇÃO SOBRE NÓS
   ========================================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}

.image-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

.chef-emoji {
  font-size: 2rem;
}

.about-points {
  margin-top: 25px;
}

.about-points div {
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--cor-escura);
}

/* ==========================================
   SECÇÃO EMENTA (GRELHA DE PRATOS)
   ========================================== */
.section-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.food-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #f3f4f6;
}

.food-image {
  width: 100%;
  height: 220px;
  padding: 0;
  border: none;
  overflow: hidden;
  cursor: pointer;
}

.food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.food-card:hover .food-image img {
  transform: scale(1.05);
}

.food-info {
  padding: 20px;
}

.food-info h3 {
  margin-bottom: 8px;
}

.food-info p {
  color: var(--cor-texto);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.food-info strong {
  font-size: 1.2rem;
  color: var(--cor-principal);
}

/* ==========================================
   PASSOS PARA ENCOMENDAR
   ========================================== */
.order-section {
  background: var(--cor-clara);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step {
  background: white;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  text-align: center;
}

.step span {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #cbd5e1;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* ==========================================
   ENTREGA E MAPA
   ========================================== */
.delivery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.map-card iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
}

/* ==========================================
   TESTEMUNHOS
   ========================================== */
.testimonials {
  background: #fdf2f8;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

blockquote {
  background: white;
  margin: 0;
  padding: 30px;
  border-radius: 12px;
  font-style: italic;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

cite {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  font-style: normal;
  color: var(--cor-principal);
}

/* ==========================================
   ANIMAÇÕES DE ENTRADA (reveal)
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   FORMULÁRIO DE TESTEMUNHOS
   ========================================== */
.comment-box-container {
  max-width: 500px;
  margin: 0 auto 40px auto;
}

#comment-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

#comment-form input,
#comment-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  resize: vertical;
}

#comment-form textarea {
  min-height: 90px;
}

#comment-form button {
  align-self: flex-start;
  background: var(--cor-principal);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

#comment-form button:hover {
  background: var(--cor-principal-hover);
}

.testimonial-empty {
  text-align: center;
  color: var(--cor-texto);
}

/* ==========================================
   CONTACTOS
   ========================================== */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  display: block;
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-overlay figure {
  margin: 0;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-overlay img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
}

.lightbox-overlay figcaption {
  color: white;
  margin-top: 12px;
  font-weight: 600;
}

/* ==========================================
   RESPONSIVIDADE (TELEMÓVEIS)
   ========================================== */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 5%;
    gap: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }
  .nav-links.is-open { display: flex; }
  .about, .delivery { grid-template-columns: 1fr; gap: 30px; }
  .hero { height: auto; padding: 100px 5% 60px 5%; }
  .hero-badge { display: none; }
}
