:root {
    font-size: 10px;
    --main-color: #d3ad7f;
    --black: #131313;
    --bg: #010103;
    --button-color: #a02a2a;
    --border: 0.1 rem solid rgba(255, 255, 255, 0.3);
    --whatsapp-color: #38aa66;
}

body {
    background-color: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Winky Rough", sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: var(--bg);
    border-bottom: var(--border);
    width: 100vw;
}

header section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 1.5rem 0;
    position: relative;
}

header section a img {
    height: 6rem;
    justify-content: center;
}

.delivery-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  padding: 1rem 2.5rem;
  border: 2px solid #fff; 
  background-color: transparent;  
  border-radius: 0.75rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.delivery-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#menuBtn {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#menuBtn:hover {
  transform: scale(1.1);
}

/*FIM DO HEADER FIXO*/

/* === SIDEBAR === */
.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100vh;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(8px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9999;
  padding: 2rem;
  transition: left 0.3s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sidebar.open {
  left: 0;
}

.sidebar .close-btn {
  background: transparent;
  border: none;
  color: var(--main-color);
  font-size: 2.5rem;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: transform 0.2s;
}

.sidebar .close-btn:hover {
  transform: rotate(90deg);
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 1.8rem;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--main-color);
  font-size: 1.6rem;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.sidebar-menu a:hover {
  background-color: var(--button-color);
  color: white;
}

/*CARDÁPIO*/
section {
  padding: 3rem 2rem;
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 12rem;
}

section h1 {
  font-family: 'Saira', sans-serif;
  grid-column: 1 / -1;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

section h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #fff;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.pizza {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid #eee;
  gap: 1rem;
  flex-wrap: wrap;
}

.pizza h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}

.pizza .ingredientes {
  font-size: 1.2rem;
  color: #b9b4b4;
  max-width: 100%;
}

.pizza .precos {
  font-family: "Saira", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  margin-left: auto;
  padding-top: 0.3rem;
  background-color: #e93232;
  border-radius: 5px;
  padding: 0.3rem 0.6rem;
  font-weight: 500;
}

.titulo-pizzas {
  font-family: 'Saira', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  background: linear-gradient(90deg, #000000, #5e5b59);
  padding: 14px 28px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 40px;
  animation: fadeInUp 0.8s ease-out;
}

/*FOOTER*/
footer {
    font-size: 1.5rem;
    background-color: #fff;
    color: #000;
    top: 100px;
    padding: 1.5rem;
    text-align: center;
}

.footer-logo {
    width: 110px;
    height: auto;
    margin-top: 10px;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #000;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a.instagram:hover {
    color: #E1306C;
}

.social-icons a.whatsapp:hover {
    color: var(--whatsapp-color);
}

.footer-info {
    margin: 10px 0;
    font-size: 14px;
}

.footer-info i {
    margin-right: 6px;
    color: #555;
}

.footer-logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    background-color: rgba(0,0,0,0.6);
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}

.footer-logo-container:hover .footer-logo-text {
    opacity: 1;
    pointer-events: auto;
}

.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .titulo-pizzas {
    font-size: 2rem;
    padding: 12px 20px;
  }

  .pizza h3 {
    font-size: 1.6rem;
  }

  .pizza .precos {
    margin-left: 0;
    font-size: 1rem;
  }

  footer {
    font-size: 1.3rem;
    padding: 1rem;
  }

  .footer-logo {
    width: 90px;
  }

  .social-icons a {
    font-size: 20px;
    margin: 0 8px;
  }

  .footer-info {
    font-size: 12px;
  }

  .mobile-break {
    display: inline;
  }
}

@media (max-width: 600px) {
  .titulo-pizzas {
    font-size: 1.6rem;
    padding: 10px 16px;
  }

  .pizza h3 {
    font-size: 1.3rem;
  }

  .pizza .precos {
    font-size: 0.9rem;
    margin-left: 0;
  }

  .pizza {
    padding: 8px;
  }

  footer {
    font-size: 1.1rem;
    padding: 0.8rem;
  }

  .footer-logo {
    width: 70px;
  }

  .social-icons a {
    font-size: 18px;
    margin: 0 6px;
  }

  .footer-info {
    font-size: 11px;
    text-align: center;
  }

  .mobile-break {
    display: inline;
  }
}
