    :root {
      --red: #A0301F;
      --orange: #D06F28;
      --green: #2D4A2F;
      --beige: #F5EEDC;
      --light-bg: #FDF6E9;
      --shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

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

    body {
      font-family: Arial, sans-serif;
      background: var(--light-bg);
      color: #333;
    }

    /* HEADER */
    header {
      background: var(--red);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 5px 30px;
      color: white;
    }

    header nav a {
      margin: 0 15px;
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }

    .logo h1 {
      font-size: 20px;
      font-weight: bold;
    }

    nav {
      display: flex;
      gap: 40px;
      align-items: center;
      margin: 0 15px;
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-weight: 500;
      font-size: 16px;
    }
    
    header nav a:hover {
      text-decoration: underline;
    }
    
    button a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 16px;}

    .cart {
      font-size: 24px;
      color: orange;
    }

    /* HERO - agora com carrossel infinito */
    .hero {
      background: var(--green);
      color: white;
      position: relative;
      overflow: hidden;
      padding: 0; /* removido padding para o carrossel */
    }

    /* Container do carrossel */
    .carousel-container {
      max-width: 10000px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 150px;
      box-shadow: var(--shadow);
      background: var(--green);
    }

    /* Track que desliza */
    .carousel-track {
      display: flex;
      width: 200%; /* duplicado para loop */
      animation: scroll 20s linear infinite;
    }

    /* Cada slide */
    .carousel-slide {
      flex: 0 0 25%; /* 4 slides visíveis */
      padding: 40px 20px;
      box-sizing: border-box;
      text-align: center;
      user-select: none;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
      min-height: 220px;
      background: rgba(0,0,0,0.15);
      border-radius: 12px;
    }

    .carousel-slide h2 {
      font-size: 1.8rem;
      font-weight: 900;
      line-height: 1.2;
      margin: 0;
    }

    .carousel-slide h2 span {
      color: #F4B731;
    }

    .carousel-slide p {
      font-size: 1rem;
      margin: 0;
    }

    /* Animação de scroll infinito */
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .carousel-slide {
        flex: 0 0 50%;
        min-height: 180px;
        padding: 30px 15px;
      }
      .carousel-slide h2 {
        font-size: 1.4rem;
      }
      .carousel-slide p {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .carousel-slide {
        flex: 0 0 100%;
        min-height: 160px;
        padding: 20px 15px;
      }
      .carousel-slide h2 {
        font-size: 1.2rem;
      }
      .carousel-slide p {
        font-size: 0.85rem;
      }
    }

    /* Mantive o estilo das pizzas posicionadas para ocultar */
    .hero .pizza-img {
      display: none;
    }

    /* SECTION TITLE */
    .section-title {
      text-align: center;
      margin: 50px 0 30px;
    }

    .section-title h3 {
      display: inline-block;
      background: #e8e3c7;
      padding: 12px 40px;
      border-radius: 25px;
      font-size: 22px;
      font-weight: bold;
      box-shadow: var(--shadow);
    }

    /* CARDS */
    .cards {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      padding: 20px;
    }

    .card {
      background: var(--orange);
      border-radius: 20px;
      padding: 20px;
      text-align: center;
      width: 280px;
      box-shadow: var(--shadow);
    }

    .card img {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      border: 4px solid #65432133;
    }

    .card .tag {
      display: inline-block;
      background: #f6f1db;
      padding: 8px 16px;
      border-radius: 25px;
      font-weight: bold;
      font-size: 14px;
      margin-bottom: 15px;
    }


    .card button {
      display: block;
      width: 80%;
      margin: 0 auto;
      background: #b32d1d;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 25px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
    }

    .card button:hover {
      background: #8c2417;
    }

    /* FOOTER */
    footer {
      background: var(--red);
      color: white;
      text-align: center;
      padding: 15px;
      margin-top: 40px;
      font-size: 14px;
    }
