
:root {
    --primary: #7c3aed;
    --secondary: #9333ea;
    --dark: #111827;
    --light: #f9fafb;
    --success: #10b981;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
  }

  body {
    background: var(--light);
  }

  .navbar {
    background: white;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
  }

  .nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }

  .nav-links a:hover {
    color: var(--primary);
  }

  .mobile-menu {
    display: none;
    cursor: pointer;
  }

  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    margin-top: 0;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5)
      ),
      url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1200");
    background-size: cover;
    background-position: center;
    color: white;
  }

  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  }

  .food-gallery {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .gallery-item:hover img {
    transform: scale(1.1);
  }

  .features {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
  }

  .pricing {
    background: var(--light);
    padding: 6rem 2rem;
    text-align: center;
  }

  .pricing h2 {
    margin-bottom: 3rem;
    color: var(--dark);
  }

  .pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
    transition: transform 0.3s ease;
  }

  .pricing-card:hover {
    transform: translateY(-5px);
  }

  .price {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 1rem 0;
  }

  .price-subtitle {
    color: var(--dark);
    opacity: 0.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .volume-pricing {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
  }

  .volume-pricing h4 {
    color: var(--primary);
    margin-bottom: 1rem;
  }

  .volume-list {
    list-style: none;
    padding: 0;
  }

  .volume-list li {
    margin: 0.75rem 0;
    color: var(--dark);
  }

  .volume-list strong {
    color: var(--primary);
  }

  .features-list {
    list-style: none;
    margin: 2rem 0;
  }

  .features-list li {
    margin: 0.5rem 0;
    color: var(--dark);
  }

  .testimonials {
    padding: 4rem 2rem;
    background: white;
  }

  .testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
  }

  .testimonial-carousel {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
  }

  .testimonial-slide {
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }

  .testimonial-slide.active {
    opacity: 1;
    position: relative;
  }

  .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .testimonial-author {
    font-weight: bold;
    color: var(--primary);
  }

  footer {
    background: var(--dark);
    color: white;
    padding: 2rem;
    text-align: center;
  }

  .cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 6px rgba(124, 58, 237, 0.25);
  }

  .cta-button:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(124, 58, 237, 0.3);
  }

  .hero .cta-button {
    background: white;
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 1rem;
  }

  .hero .cta-button:hover {
    background: var(--primary);
    color: white;
    border-color: white;
  }

  .nav-links .cta-button {
    padding: 0.5rem 1.5rem;
    background: transparent;
    color: var(--primary);
  }

  .nav-links .cta-button:hover {
    background: var(--primary);
    color: white;
  }

  .whatsapp-button {
    display: flex;
    align-items: center;
    background: #25d366;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
  }

  .whatsapp-button:hover {
    background: #128c7e;
    color: white !important;
    transform: translateY(-2px);
  }

  .carousel-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .carousel-dot.active {
    background: var(--primary);
  }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }

    .mobile-menu {
      display: block;
    }

    .nav-links.active {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      padding: 1rem;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      align-items: center;
      gap: 1rem;
    }

    .hero h1 {
      font-size: 2.5rem;
    }

    .pricing-cards {
      flex-direction: column;
      align-items: center;
    }

    .cta-button {
      padding: 0.8rem 1.5rem;
      font-size: 0.9rem;
    }

    .hero .cta-button {
      font-size: 1rem;
    }

    .whatsapp-button {
      width: fit-content;
    }
  }
