:root {
    --primary-color: #1A1A1A;
    --secondary-color: #FFD700;
    --accent-color: #B8860B;
    --text-color: #333;
    --light-bg: #FFF8E7;
    --gold-gradient: linear-gradient(45deg, #FFD700, #FFF7C2, #FFD700);
  }
  
  
  body {
    font-family: "Poppins", serif;
    font-weight: 100;
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--primary-color);
  }
  
  .custom-navbar {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  }
  
  .navbar-scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
  }
  
  .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem !important;
    color: var(--secondary-color) !important;
    transition: all 0.3s ease;
  }
  
  .nav-link:hover {
    color: #FFF !important;
    transform: translateY(-2px);
  }
  
  .hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/feijoada.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }


  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.75);
    z-index: 1;

    /* Adicionando a imagem de fundo */
    background-image: url('./img/frango.jpeg'); /* Substitua pelo caminho da sua imagem */
    background-size: cover; /* Ajusta para cobrir toda a área */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição */
}

  
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
  
  .logo-animation {
    margin-bottom: 30px;
  }
  
  
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
  }
  
  .hero-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
  }
  
  .hero-card {
    width: 350px;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
  }
  
  .hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
  }
  
  .hero-image-container {
    height: 250px;
    overflow: hidden;
  }
  
  .hero-special-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .hero-card:hover .hero-special-img {
    transform: scale(1.1);
  }
  
  .hero-card-content {
    padding: 20px;
    text-align: center;
  }
  
  .hero-card-content h3 {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
  }
  
  .hero-card-content p {
    color: #fff;
    margin: 0;
  }
  
  .hero-cta {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 30px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.1s;
  }
  
  .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    color: var(--primary-color);
  }
  
  @keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .day-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
  }
  
  .menu-item {
    aspect-ratio: 3/4;
  }
  
  .menu-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
  }
  
  .menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .menu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 20px;
    transform: translateY(100px);
    transition: transform 0.3s ease;
  }
  
  .menu-card:hover .menu-overlay {
    transform: translateY(0);
  }
  
  .menu-card:hover img {
    transform: scale(1.05);
  }
  
  .menu-overlay h3 {
    color: var(--secondary-color);
    margin: 0;
    font-family: 'Playfair Display', serif;
  }
  
  .menu-overlay p {
    color: white;
    margin: 5px 0 15px;
  }
  
  .menu-video-btn {
    background: var(--secondary-color);
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .menu-video-btn:hover {
    background: white;
    transform: translateY(-2px);
  }
  
  .video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
  }
  
  .video-modal-content {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    width: 90%;
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .close-modal {
    position: absolute;
    top: -40px;
    right: -40px;
    background: none;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
  }
  
  .specials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  
  .specials-slider::-webkit-scrollbar {
    display: none;
  }
  
  .special-item {
    flex: 0 0 400px;
    scroll-snap-align: start;
  }
  
  .media-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
  }
  
  .media-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 215, 0, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .media-container:hover .play-btn {
    opacity: 1;
  }
  
  .play-btn i {
    color: var(--primary-color);
    font-size: 24px;
  }
  
  .special-card {
    transition: all 0.4s ease;
    background: rgba(26, 26, 26, 0.95);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
  }
  
  .special-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
  }
  
  .special-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
  }
  
  .special-card:hover .card-img-top {
    transform: scale(1.05);
  }
  
  .special-card .card-body {
    padding: 2rem;
    border-top: 2px solid var(--secondary-color);
  }
  
  .special-card .card-title {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .special-card .card-text {
    color: #fff;
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .restaurant-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid var(--secondary-color);
  }
  
  .restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .restaurant-image:hover img {
    transform: scale(1.05);
  }
  
  .about-section {
    background-color: var(--primary-color);
    color: white;
    padding: 100px 0;
    position: relative;
  }
  
  .about-section h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
  }
  
  .chef-image {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
  }
  
  .chef-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    opacity: 0.5;
  }
  
  .contact-section {
    background: linear-gradient(rgba(26,26,26,0.97), rgba(26,26,26,0.97)), url('./img/constelinha.jpeg');
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    color: white;
  }
  
  .map-container {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--secondary-color);
  }
  
  #map {
    height: 100%;
    width: 100%;
  }
  
  .contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    height: 100%;
    font-family: "Poppins", serif;
  }
  
  .contact-form {
    display: none;
  }
  
  .social-links .social-icon {
    color: var(--secondary-color);
    font-size: 28px;
    margin: 0 15px;
    transition: all 0.3s ease;
  }
  
  .social-links .social-icon:hover {
    color: white;
    transform: translateY(-3px);
  }
  
  footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
  }
  
  .section-title {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
  }
  
  .btn-primary {
    background: var(--gold-gradient);
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    background: var(--secondary-color);
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 3rem;
    }
    
    .hero-cards {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    
    .hero-card {
      width: 100%;
      max-width: 350px;
    }
    
    .hero-logo {
      width: 200px;
    }
    
    .menu-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .close-modal {
      right: 0;
    }
    
    .custom-navbar {
      padding: 10px 0;
    }
    
    .logo {
      height: 50px;
    }
    
    .special-item {
      flex: 0 0 300px;
    }
    
    .video-modal-content {
      width: 95%;
      margin: 20px auto;
    }
  }