<<<<<<< HEAD
/* ==========================================
   Animações Gerais
   ========================================== */
.animate-fade-in {
    transition: opacity 0.3s ease-in-out;
}

.scale-102 {
    transform: scale(1.02);
}

/* ==========================================
   Ajustes de Scroll e Seções
   ========================================== */
section {
    /* Compensa o espaço da navbar fixa */
    scroll-margin-top: 80px;
}

/* ==========================================
   Estilos do Menu Desktop
   ========================================== */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

/* Efeito de underline no hover */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #f97316;
    /* Laranja Tailwind */
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active-link::after {
    width: 100%;
}

/* Link ativo no desktop */
.nav-link.active-link {
    color: #10b981 !important; /* Verde Esmeralda */
    /* Laranja Tailwind */
}

/* ==========================================
   Estilos do Menu Mobile
   ========================================== */
.menu-item {
    transition: all 0.3s ease;
}

/* Container do menu mobile */
#mobile-menu {
    transform-origin: top;
    transition: all 0.3s ease-in-out;
    transform: translateY(-100%);
    opacity: 0;
}

/* Estados do menu mobile */
#mobile-menu.hidden {
    opacity: 0;
    transform: scaleY(0);
}

#mobile-menu:not(.hidden) {
    opacity: 1;
    transform: scaleY(1);
}

#mobile-menu.menu-open {
    transform: translateY(0);
    opacity: 1;
}

#mobile-menu.menu-close {
    transform: translateY(-100%);
    opacity: 0;
}

/* Link ativo no menu mobile */
#mobile-menu .nav-link.active-link {
    background-color: #ecfdf5; /* Verde claro */
    color: #10b981; /* Verde esmeralda */
    border-radius: 0.5rem;
}

/* Botão do menu mobile ativo */
.menu-button-active {
    color: #10b981 !important; /* Verde Esmeralda */
    /* Laranja Tailwind */
}

/* Animações de entrada do menu mobile */
.mobile-menu-enter {
    opacity: 0;
    transform: translateY(-10px);
}

.mobile-menu-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 200ms, transform 200ms;
}

.mobile-menu-animation {
    transition: all 0.3s ease-in-out;
}

/* ==========================================
   Media Queries
   ========================================== */
@media (max-width: 640px) {
    .menu-item {
        flex-direction: column;
        text-align: center;
    }

    .menu-item img {
        margin-bottom: 1rem;
    }
}

/* Ajustes Gerais de Responsividade */
@media (max-width: 768px) {
  /* Hero Section */
  #hero {
    min-height: 100vh;
    padding-top: 5rem;
  }

  #hero .flex-col {
    text-align: center;
  }

  #hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  /* Imagem do Self-Service no Hero */
  .hero-image-container {
    margin-top: 2rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Badges */
  .badge-horario {
    right: 0;
    font-size: 0.875rem;
  }

  .badge-avaliacao {
    left: 0;
    font-size: 0.875rem;
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
  /* Menu Mobile */
  #mobile-menu {
    padding: 1rem;
  }

  .nav-link-mobile {
    padding: 0.75rem;
    font-size: 1rem;
  }

  /* Cards de Destaques */
  .card-destaque {
    margin: 0.5rem;
  }

  /* Cardápio */
  .day-button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .menu-item {
    padding: 1rem;
  }

  .menu-item img {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
  }
}

/* Ajustes para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  #hero {
    min-height: 80vh;
  }

  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Melhorias na navegação fixa */
.fixed-nav {
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

/* Melhorias nas animações */
@media (prefers-reduced-motion: no-preference) {
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
  }

  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Otimizações de performance */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Atualizar botões e elementos interativos */
.button-primary {
    background-color: var(--color-primary);
}

.button-primary:hover {
    background-color: var(--color-primary-dark);
}

/* Atualizar indicadores ativos */
.active-indicator {
    background-color: var(--color-primary);
}

/* Atualizar elementos de hover */
.hover-effect:hover {
    color: var(--color-primary);
}

/* Ajustes específicos para o menu mobile */
@media (max-width: 768px) {
    /* Hero Section ajustes */
    #hero {
        padding-top: 6rem;
    }

    .hero-content {
        text-align: center;
    }

    /* Ajustes de espaçamento para seções */
    section {
        padding: 4rem 1rem;
    }

    /* Grid layouts */
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Ajustes de texto */
    h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    /* Ajustes de botões */
    .button-group {
        flex-direction: column;
        gap: 1rem;
    }

    /* Menu Mobile */
    #mobile-menu {
        transition: all 0.3s ease-in-out;
    }

    #mobile-menu:not(.hidden) {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-menu-link {
        transition: all 0.2s ease;
    }

    .mobile-menu-link:active {
        background-color: #f3f4f6;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    /* Ajustes de padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Ajustes de imagem */
    .profile-image {
        width: 200px;
        height: 200px;
    }

    /* Ajustes de cards */
    .card {
        padding: 1rem;
    }

    /* Formulário de contato */
    input, textarea {
        font-size: 16px; /* Previne zoom em iOS */
    }
=======
/* ==========================================
   Animações Gerais
   ========================================== */
.animate-fade-in {
    transition: opacity 0.3s ease-in-out;
}

.scale-102 {
    transform: scale(1.02);
}

/* ==========================================
   Ajustes de Scroll e Seções
   ========================================== */
section {
    /* Compensa o espaço da navbar fixa */
    scroll-margin-top: 80px;
}

/* ==========================================
   Estilos do Menu Desktop
   ========================================== */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

/* Efeito de underline no hover */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #f97316;
    /* Laranja Tailwind */
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active-link::after {
    width: 100%;
}

/* Link ativo no desktop */
.nav-link.active-link {
    color: #10b981 !important; /* Verde Esmeralda */
    /* Laranja Tailwind */
}

/* ==========================================
   Estilos do Menu Mobile
   ========================================== */
.menu-item {
    transition: all 0.3s ease;
}

/* Container do menu mobile */
#mobile-menu {
    transform-origin: top;
    transition: all 0.3s ease-in-out;
    transform: translateY(-100%);
    opacity: 0;
}

/* Estados do menu mobile */
#mobile-menu.hidden {
    opacity: 0;
    transform: scaleY(0);
}

#mobile-menu:not(.hidden) {
    opacity: 1;
    transform: scaleY(1);
}

#mobile-menu.menu-open {
    transform: translateY(0);
    opacity: 1;
}

#mobile-menu.menu-close {
    transform: translateY(-100%);
    opacity: 0;
}

/* Link ativo no menu mobile */
#mobile-menu .nav-link.active-link {
    background-color: #ecfdf5; /* Verde claro */
    color: #10b981; /* Verde esmeralda */
    border-radius: 0.5rem;
}

/* Botão do menu mobile ativo */
.menu-button-active {
    color: #10b981 !important; /* Verde Esmeralda */
    /* Laranja Tailwind */
}

/* Animações de entrada do menu mobile */
.mobile-menu-enter {
    opacity: 0;
    transform: translateY(-10px);
}

.mobile-menu-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 200ms, transform 200ms;
}

.mobile-menu-animation {
    transition: all 0.3s ease-in-out;
}

/* ==========================================
   Media Queries
   ========================================== */
@media (max-width: 640px) {
    .menu-item {
        flex-direction: column;
        text-align: center;
    }

    .menu-item img {
        margin-bottom: 1rem;
    }
}

/* Ajustes Gerais de Responsividade */
@media (max-width: 768px) {
  /* Hero Section */
  #hero {
    min-height: 100vh;
    padding-top: 5rem;
  }

  #hero .flex-col {
    text-align: center;
  }

  #hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  /* Imagem do Self-Service no Hero */
  .hero-image-container {
    margin-top: 2rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Badges */
  .badge-horario {
    right: 0;
    font-size: 0.875rem;
  }

  .badge-avaliacao {
    left: 0;
    font-size: 0.875rem;
  }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
  /* Menu Mobile */
  #mobile-menu {
    padding: 1rem;
  }

  .nav-link-mobile {
    padding: 0.75rem;
    font-size: 1rem;
  }

  /* Cards de Destaques */
  .card-destaque {
    margin: 0.5rem;
  }

  /* Cardápio */
  .day-button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .menu-item {
    padding: 1rem;
  }

  .menu-item img {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
  }
}

/* Ajustes para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  #hero {
    min-height: 80vh;
  }

  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Melhorias na navegação fixa */
.fixed-nav {
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

/* Melhorias nas animações */
@media (prefers-reduced-motion: no-preference) {
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
  }

  .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Otimizações de performance */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Atualizar botões e elementos interativos */
.button-primary {
    background-color: var(--color-primary);
}

.button-primary:hover {
    background-color: var(--color-primary-dark);
}

/* Atualizar indicadores ativos */
.active-indicator {
    background-color: var(--color-primary);
}

/* Atualizar elementos de hover */
.hover-effect:hover {
    color: var(--color-primary);
>>>>>>> 72e069db6ead01ff34830edc0dcb3bb8d3b07afd
}