* {
    margin: 0;
    padding: 0;
  }
  
  a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    opacity: 0.7;
  }
  
  .logo {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 4px;
  }
  
  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: system-ui, -apple-system, Helvetica, Arial, sans-serif;
    background: hwb(0 0% 100%);
    height: 8vh;
    position: flex;
  }
  
  main {
    background: url("vizi.jpg") no-repeat center center;
    background-size: cover;
    height: 120vh;
  }
  
  .nav-list {
    list-style: none;
    
  }
  
  .nav-list li {
    letter-spacing: 3px;
    margin-left: 32px;
    
  }
  
  .mobile-menu {
    display: none;
    cursor: pointer;
  }
  
  .mobile-menu div {
    width: 32px;
    height: 2px;
    background: #fff;
    margin: 8px;
    transition: 0.3s;
  }
  
  @media (max-width: 999px) {
    body {
      overflow-x: hidden;
    }
    .nav-list {
      position: absolute;
      top: 8vh;
      right: 0;
      width: 50vw;
      height: 92vh;
      background: hsl(0, 0%, 100%);
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      transform: translateX(100%);
      transition: transform 0.3s ease-in;
      
    }
    .nav-list li {
      margin-left: 0;
      opacity: 0;
    }
    .mobile-menu {
      display: block;
    }
  }
  
  .nav-list.active {
    transform: translateX(0);
  }
  
  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
  }
  
  .mobile-menu.active .line2 {
    opacity: 0;
  }
  
  .mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
  }
  
  
  /* Hero Section */
  .hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('padaria-hero.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  }
  
  .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Escurece a imagem de fundo */
  z-index: 1;
  }
  
  .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeIn 1.5s ease-out;
  }
  
  .hero-content h1 {
  font-size: 3.5rem;
  margin: 0;
  line-height: 1.2;
  }
  
  .hero-content h1 span {
  color: rgb(255, 255, 255); /* Destaque para o nome */
  text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.8);
  }
  
  .hero-content p {
  font-size: 1.5rem;
  margin: 20px 0;
  line-height: 1.6;
  }
  
  .cta-button {
  padding: 15px 30px;
  font-size: 1.2rem;
  color: #fff;
  background: #f1c40f;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  }
  
  .cta-button:hover {
  background: #d4a007;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
  }
  
  /* Animação de fade-in */
  @keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
  .hero-content h1 {
      font-size: 2.5rem;
  }
  
  .hero-content p {
      font-size: 1.2rem;
  }
  
  .cta-button {
      font-size: 1rem;
      padding: 12px 25px;
  }
  }
  
  .scroll-effect {
  animation: pulse 1s infinite;
  }
  
  @keyframes pulse {
  0%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  }
  /* Seção Sobre Nós */
  .about {
  padding: 50px 20px;
  background: hsl(0, 0%, 0%);
  color: rgb(255, 255, 255);
  }
  
  .about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
  }
  
  .about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  animation: fadeInLeft 1.2s ease-out;
  }
  
  .about-text h2 {
  font-size: 2.5rem;
  color: hsl(0, 0%, 100%);
  margin-bottom: 20px;
  position: relative;
  text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.8);
  }
  
  .about-text h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 4px;
  background: hsl(0, 0%, 100%);
  text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.8);
  }
  
  .about-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: hsl(0, 0%, 100%);
  }
  
  .about-text strong {
  color: #d4a007;
  }
  
  .about-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: center;
  animation: fadeInRight 1.2s ease-out;
  }
  
  .about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  
  /* Seção Produtos */
  .products {
  padding: 50px 20px;
  background: hsl(0, 0%, 0%);
  text-align: center;
  }
  
  .products-header h2 {
  font-size: 2.5rem;
  color: hwb(0 100% 0%);
  margin-bottom: 10px;
  text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.8);
  }
  
  .products-header p {
  font-size: 1.2rem;
  color: hsl(0, 0%, 100%);
  margin-bottom: 40px;
  }
  
  .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  }
  
  .product-item {
  background: hsl(0, 0%, 100%);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  }
  
  .product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .product-item img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #f1c40f;
  }
  
  .product-info {
  padding: 20px;
  }
  
  .product-info h3 {
  font-size: 1.5rem;
  color: hsl(0, 0%, 0%);
  margin-bottom: 10px;
  }
  
  .product-info p {
  font-size: 1rem;
  color: hsl(0, 0%, 100%);
  margin-bottom: 15px;
  }
  
  .btn-detalhes {
  background: hsl(0, 0%, 0%);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  }
  
  .btn-detalhes:hover {
  background: #d4a007;
  transform: scale(1.05);
  }
  
  /* Modal */
  .product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  }
  
  .modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 500px;
  position: relative;
  }
  
  .modal-content img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  }
  
  .modal-content h3 {
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 10px;
  }
  
  .modal-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
  }
  
  .close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  font-weight: bold;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* Estilo geral do header */
  header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: hwb(0 0% 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  }
  
  .logo1 {
  font-size: 1.8rem;
  color: hwb(0 100% 0%);
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.8);
  }
  
  .nav-list1 {
  display: flex;
  gap: 20px;
  list-style: none;
  transition: transform 0.3s ease;
  }
  
  .nav-list1 li a {
  text-decoration: none;
  font-size: 1rem;
  color: hwb(0 100% 0%);
  font-weight: bold;
  transition: color 0.3s ease;
  text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.8);
  }
  
  .nav-list1 li a:hover {
  color: #333;
  }
  
  /* Mobile Menu */
  .mobile-menu1 {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  }
  
  .mobile-menu1 div {
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
  }
  
  /* Responsividade para mobile */
  @media (max-width: 768px) {
  .nav-list1 {
      position: absolute;
      top: 70px;
      right: 20px;
      background: #f1c40f;
      border-radius: 10px;
      flex-direction: column;
      gap: 15px;
      padding: 20px;
      transform: translateX(100%);
      opacity: 0;
      visibility: hidden;
  }
  
  .nav-list1.active {
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
  }
  
  .mobile-menu1 {
      display: flex;
  }
  
  .mobile-menu1.active .line11 {
      transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu1.active .line21 {
      opacity: 0;
  }
  
  .mobile-menu1.active .line31 {
      transform: rotate(-45deg) translate(5px, -5px);
  }
  }
  html {
  scroll-behavior: smooth;
  }