:root {
  --rosa-principal: #d99197;
  --verde-destaque: #e91e63; 
  --vermelho-escuro: #a64444;
  --branco-claro: #f2f2f2;
  --rosa-claro: #f2bdbd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY E LAYOUT */
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Rubik", sans-serif;
  background: var(--rosa-principal);
  color: var(--vermelho-escuro);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* AJUSTE AQUI: Aumentamos o padding-top para evitar sobreposição do header fixo */
main {
  flex: 1;
  padding-top: 110px; /* Novo valor para dar espaço ao header fixo */
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */
#back-to-top {
  position: fixed;
  bottom: 150px;
  right: 20px;
  background-color: var(--verde-destaque);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  font-size: 24px;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s;
}
#back-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

/* ===== HEADER ===== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--branco-claro);
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
header h1 {
  font-family: 'Parisienne', cursive;
  font-size: 2.4rem;
  color: var(--vermelho-escuro);
}
.headerLogo {
  width: 60px;
  height: auto;
  animation: floatZoom 5s ease-in-out infinite;
}

/* ===== MENU ===== */
nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}
nav ul li a {
  text-decoration: none;
  color: var(--vermelho-escuro);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  transition: 0.3s;
}
nav ul li a:hover,
nav ul li a:focus {
  background: var(--rosa-claro);
  color: #fff;
}

/* ===== Botão hamburguer ===== */
.menu-toggle {
  display: none;
  cursor: pointer;
}
.menu-toggle .material-icons {
  font-size: 32px;
  color: var(--vermelho-escuro);
}

/* ===== MENU DE DOCES (CARDS) ===== */
.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 20px;
  gap: 25px;
}

.item {
  background: var(--branco-claro);
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  width: 360px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item:hover {
  transform: translateY(-8px);
}

.item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.item h2 {
  font-family: 'Parisienne', cursive;
  font-size: 2.2rem;
  color: var(--verde-destaque);
  margin-bottom: 10px;
}

.item p {
  font-size: 1rem;
  color: #333;
}

.card-subtitle {
  font-weight: 700;
  color: var(--verde-destaque);
  margin: 10px 0 5px 0;
  font-size: 1rem;
}

.card-values {
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}

.card-values li {
  font-weight: 500;
  color: var(--vermelho-escuro);
  margin-bottom: 4px;
}

.card-note {
  font-size: 0.85rem;
  color: #555;
  margin-top: 5px;
}

.detalhe {
  display: inline-block;
  padding: 0.5em 1em;
  background-color: var(--verde-destaque);
  color: #fff;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  margin-top: auto;
}

.detalhe:hover {
  background-color: #d81b60;
  transform: translateY(-2px);
}

.detalhe:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===== INFO ===== */
.info {
  text-align: center;
  padding: 40px 20px;
}

.info h1 {
  font-family: 'Parisienne', cursive;
  font-size: 3.2rem;
  color: var(--vermelho-escuro);
  margin-bottom: 10px;
}

.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}

.info-card {
  flex: 1 1 300px;
  max-width: 450px;
  background: linear-gradient(135deg, #fde2e2, #fff5f5);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #f8c6c6;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h2 {
  font-family: 'Parisienne', cursive;
  font-size: 1.6rem;
  color: var(--verde-destaque);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--rosa-claro);
  padding-bottom: 5px;
}

.info-card ul {
  list-style: none;
  padding-left: 0;
}

.info-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ===== CARD ENCOMENDAS ===== */
.encomendas-card {
  background: url("https://images.unsplash.com/photo-1582719478170-8ef8c7d3b1b2?auto=format&fit=crop&w=800&q=80")
    center/cover no-repeat;
  border-radius: 20px;
  padding: 30px;
  max-width: 450px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.encomendas-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 20px;
}

.encomendas-card h2 {
  font-family: 'Parisienne', cursive;
  font-size: 2.2rem;
  color: #ffd700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.encomendas-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.encomendas-card ul li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
}

.encomendas-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--verde-destaque);
  font-weight: bold;
  font-size: 1.1rem;
}

.encomendas-card .contact {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--vermelho-escuro);
  
}

.observacao{
  color: var(--verde-destaque);
}
/* ===== FOOTER ===== */
footer {
  background: var(--vermelho-escuro);
  color: #fff;
  padding: 20px 15px;
  font-size: 0.9rem;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.footer-instagram {
  flex: 1 1 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-instagram a.instagram-link {
  color: #f2bdbd;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.2rem;
}

.footer-instagram a.instagram-link:hover {
  color: #e1306c;
}

.map-container {
  flex: 2 1 450px;
  max-width: 600px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

#footer-text {
  display: flex;
  justify-content: center;
  padding-top: 1em;
}

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}
.whatsapp-float i {
  font-size: 28px;
}

/* ===== VLibras ===== */
.vw-widget-wrapper {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  bottom: auto !important;
  left: auto !important;
  z-index: 1500 !important;
}

/* ===== RESPONSIVIDADE MOBILE ===== */
@media (max-width: 768px) {
  /* Ajuste para o padding-top em mobile, se necessário */
  main {
    padding-top: 110px; /* Garante que o conteúdo comece bem abaixo do header */
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: var(--branco-claro);
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 100vh; /* cobre toda a altura */
    padding: 20px 15px;
    box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1200;
  }
  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px; /* X dentro da área do menu */
    z-index: 1300;
  }
  .menu {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }
  .item {
    width: 95%;
    min-height: 700px;
  }
  .item img {
    height: 400px;
  }
  .info-cards {
    flex-direction: column;
    align-items: center;
  }
  .info-card {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0 0 20px 0;
  }
  footer {
    padding: 25px 10px;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-instagram {
    margin: 0 auto;
  }
  .footer-instagram a.instagram-link {
    font-size: 1rem;
    text-align: center;
  }
  .map-container {
    width: 100%;
    max-width: 380px;
    height: 200px;
    border-radius: 10px;
  }
  .map-container iframe {
    width: 100%;
    height: 100%;
  }
  #footer-text {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 15px;
    opacity: 0.9;
  }

  /* Ajustes responsivos para Parisienne */
  header h1 {
    font-size: 2.0rem;
  }
  .info h1 {
    font-size: 2.6rem;
  }
  .item h2 {
    font-size: 1.9rem;
  }
  .info-card h2 {
    font-size: 1.4rem;
  }
  .encomendas-card h2 {
    font-size: 1.9rem;
  }
}

/* ===== ANIMAÇÃO LOGO ===== */
@keyframes floatZoom {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.05);
  }
}