/* Estilos customizados para o cardápio animado */

/* Fontes */
.font-display {
    font-family: 'Playfair Display', serif;
}

/* Animações de revelação */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Animação flutuante */
@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* Navbar scrolled */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(to right, #92400e 0%, #78350f 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(107, 68, 35, 0.85) 0%, rgba(139, 111, 71, 0.85) 50%, rgba(212, 165, 116, 0.85) 100%),
        url('https://images.unsplash.com/photo-1509440159596-0249088772ff?w=1600&h=900&fit=crop') center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Hero Carousel Styles */
.hero-carousel-section {
    position: relative;
    width: 100%;
    height: 100vh;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Swiper Navigation Customization */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(107, 68, 35, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(107, 68, 35, 0.8);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px !important;
    font-weight: bold;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    width: 40px;
    border-radius: 6px;
}

/* Responsive para Carousel */
@media (max-width: 768px) {
    .hero-carousel-section {
        height: auto;
        min-height: 100vh;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 18px !important;
    }
}

/* Text gradient */
.text-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Title Animation */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4A574, transparent);
    border-radius: 2px;
}

/* Stat Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* Featured Cards */
.featured-card {
    background: linear-gradient(135deg, #6B4423 0%, #8B6F47 100%);
    color: white;
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
}

.featured-card img {
    transition: transform 0.5s ease;
}

.featured-card:hover img {
    transform: scale(1.1);
}

/* Badge */
.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #6B4423;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Product Cards */
.product-card {
    background: white;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #D4A574;
    box-shadow: 0 20px 40px rgba(107, 68, 35, 0.2);
}

.product-image {
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFE4B5 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

/* Asymmetric Grid */
.asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Filter Buttons */
.filter-btn {
    transition: all 0.3s ease;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 68, 35, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #6B4423 0%, #8B6F47 100%) !important;
    color: white !important;
    border-color: #6B4423 !important;
}

/* Modern Buttons */
.btn-modern {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern:hover {
    transform: translateY(-2px);
}

.btn-modern:active {
    transform: translateY(0);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .asymmetric-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}

/* Scroll Bar Customizado */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6B4423 0%, #8B6F47 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8B6F47 0%, #6B4423 100%);
}

/* Mobile Menu Styles */
@media (max-width: 1024px) {
    .navbar {
        background: linear-gradient(135deg, rgba(107, 68, 35, 0.95) 0%, rgba(139, 111, 71, 0.95) 100%) !important;
        backdrop-filter: blur(10px);
    }
}
