/* Netflix Style CSS - Temperos da Lô */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --brand-primary: #3a1d07;      /* Marrom escuro principal */
    --brand-secondary: #e0c093;    /* Marrom claro/bege */
    --brand-accent: #5a3d27;      /* Marrom médio para contrastes */
    --brand-light: #f0e6d3;       /* Bege muito claro */
    --brand-dark: #2a1505;        /* Marrom muito escuro */
    
    --netflix-red: #3a1d07;        /* Agora usa marrom escuro */
    --netflix-red-dark: #2a1505;   /* Marrom mais escuro */
    --netflix-black: #1a0d03;      /* Quase preto com tom marrom */
    --netflix-dark: #3a1d07;       /* Marrom escuro principal */
    --netflix-gray: #5a3d27;       /* Marrom médio */
    --netflix-light-gray: #8b6b4a; /* Marrom claro */
    --netflix-white: #e0c093;      /* Bege principal */
    --netflix-text: #e0c093;       /* Texto principal em bege */
    --netflix-text-secondary: #c0a073; /* Texto secundário */
    
    --gradient-primary: linear-gradient(135deg, #3a1d07 0%, #5a3d27 100%);
    --gradient-secondary: linear-gradient(135deg, #e0c093 0%, #c0a073 100%);
    --gradient-dark: linear-gradient(135deg, #2a1505 0%, #3a1d07 100%);
    --gradient-hero: linear-gradient(135deg, rgba(58, 29, 7, 0.9) 0%, rgba(224, 192, 147, 0.3) 100%);
    
    --shadow-soft: 0 8px 32px rgba(58, 29, 7, 0.15);
    --shadow-medium: 0 12px 40px rgba(58, 29, 7, 0.25);
    --shadow-strong: 0 20px 60px rgba(58, 29, 7, 0.35);
    --shadow-glow: 0 0 30px rgba(224, 192, 147, 0.4);
    
    --border-radius: 12px;
    --border-radius-large: 20px;
    --border-radius-round: 50px;
    
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--netflix-dark);
    color: var(--netflix-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, #3a1d07, #5a3d27, #e0c093, #c0a073);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease-in-out infinite;
    will-change: background-position;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Override Animate.css infinite animations for hero title */
.hero-title.animate__animated.animate__fadeInUp {
    animation: gradientShift 6s ease-in-out infinite, fadeInUp 1s ease-out 1 forwards;
}

/* Ensure gradient animation continues after fadeInUp completes */
.hero-title.animate__animated.animate__fadeInUp.animate__delay-1s {
    animation: gradientShift 6s ease-in-out infinite;
}

/* Mobile: Remove all effects from hero title */
@media (max-width: 767px) {
    .hero-title {
        animation: none !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: unset !important;
        background-clip: unset !important;
        will-change: unset !important;
        color: var(--brand-secondary) !important;
        text-shadow: 2px 2px 4px rgba(58, 29, 7, 0.8);
    }
    
    .hero-title.animate__animated.animate__fadeInUp {
        animation: none !important;
    }
    
    .hero-title.animate__animated.animate__fadeInUp.animate__delay-1s {
        animation: none !important;
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--netflix-text-secondary);
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--netflix-text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

/* Header Styles */
.netflix-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(58, 29, 7, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(224, 192, 147, 0.2);
    transition: var(--transition-fast);
}

.netflix-header.scrolled {
    background: rgba(58, 29, 7, 0.98);
    box-shadow: var(--shadow-medium);
}

.navbar {
    padding: 1rem 0;
    justify-content: center;
}



/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-hero {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(224, 192, 147, 0.3);
    box-shadow: 0 0 30px rgba(224, 192, 147, 0.4);
    transition: var(--transition-fast);
    filter: drop-shadow(0 0 15px rgba(224, 192, 147, 0.6));
}

.logo-hero:hover {
    transform: scale(1.05);
    border-color: rgba(224, 192, 147, 0.6);
    box-shadow: 0 0 40px rgba(224, 192, 147, 0.6);
    filter: drop-shadow(0 0 20px rgba(224, 192, 147, 0.8));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/bg-icons-1.png') center/cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-buttons {
    margin-top: 2rem;
}

.btn {
    padding: 1.25rem 3rem;
    border: none;
    border-radius: var(--border-radius-round);
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.btn-primary {
    background: linear-gradient(135deg, #e0c093 0%, #c0a073 50%, #a0855a 100%);
    color: var(--brand-dark);
    box-shadow: 0 8px 25px rgba(224, 192, 147, 0.4), 0 4px 15px rgba(58, 29, 7, 0.3);
    border: 2px solid rgba(224, 192, 147, 0.3);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(224, 192, 147, 0.6), 0 8px 20px rgba(58, 29, 7, 0.4);
    background: linear-gradient(135deg, #f0d0a3 0%, #d0b083 50%, #b0956a 100%);
    border-color: rgba(224, 192, 147, 0.6);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active,
.btn-primary:focus,
.btn-primary:active:focus {
    background: linear-gradient(135deg, #d0b083 0%, #b0956a 50%, #90755a 100%) !important;
    color: var(--brand-dark) !important;
    box-shadow: 0 8px 25px rgba(224, 192, 147, 0.6), 0 4px 15px rgba(58, 29, 7, 0.4) !important;
    border-color: rgba(224, 192, 147, 0.6) !important;
    outline: none !important;
    transform: translateY(-2px);
}

/* Override Bootstrap default button styles */
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    background: linear-gradient(135deg, #d0b083 0%, #b0956a 50%, #90755a 100%) !important;
    border-color: rgba(224, 192, 147, 0.6) !important;
    color: var(--brand-dark) !important;
}

/* Menu Section */
.menu-section {
    padding: 10rem 0 8rem 0;
    background: var(--netflix-dark);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--netflix-dark));
}

.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

/* Category Navigation */
.category-nav-wrapper {
    margin-bottom: 4rem;
    padding: 2rem 1rem;
    /* Removido overflow-x: auto para não cortar sombras */
}

.category-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    min-width: max-content;
}

.category-btn {
    background: rgba(224, 192, 147, 0.1);
    border: 2px solid rgba(224, 192, 147, 0.2);
    color: var(--netflix-text);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-round);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.category-btn:hover {
    background: rgba(224, 192, 147, 0.2);
    border-color: rgba(224, 192, 147, 0.4);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--netflix-white);
    box-shadow: 0 0 30px rgba(224, 192, 147, 0.6);
    transform: translateY(-2px);
    z-index: 2;
}

.category-btn i {
    font-size: 1.2rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(224, 192, 147, 0.05);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 192, 147, 0.15);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(224, 192, 147, 0.4);
}

.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.spicy-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 71, 87, 0.9);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(255, 71, 87, 0.4);
    animation: spicyPulse 2s ease-in-out infinite;
    z-index: 2;
}

.spicy-badge i {
    font-size: 1rem;
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--netflix-white);
}

.product-description {
    color: var(--netflix-text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-secondary);
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    justify-content: center;
}

.add-to-cart-btn {
    background: var(--gradient-primary);
    color: var(--netflix-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-round);
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 600;
    width: 100%;
    font-size: 1rem;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
    position: relative;
}

.about-content {
    padding-right: 3rem;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    font-size: 1.2rem;
    color: var(--netflix-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--netflix-text);
    font-weight: 500;
}

.feature-item i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-strong);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    box-shadow: var(--shadow-strong);
    text-decoration: none;
    color: white;
    font-size: 2rem;
    transition: var(--transition-fast);
    position: relative;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.whatsapp-float a::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
}

/* Footer */
.netflix-footer {
    background: var(--brand-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(224, 192, 147, 0.2);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(224, 192, 147, 0.5));
}

.footer-description {
    color: var(--netflix-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links h5,
.footer-social h5 {
    color: var(--netflix-white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--netflix-text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    display: block;
    padding: 0.5rem 0;
}

.footer-links a:hover {
    color: var(--brand-secondary);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: var(--netflix-white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--netflix-text-secondary);
}



@keyframes spicyPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .category-nav {
        justify-content: flex-start;
        padding: 0 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .footer-brand,
    .footer-links,
    .footer-social {
    text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .category-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .product-card {
        margin: 0 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-medium);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(224, 192, 147, 0.2);
    border-left-color: var(--brand-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.rounded-large {
    border-radius: var(--border-radius-large);
}

.transition-fast {
    transition: var(--transition-fast);
}

.transition-medium {
    transition: var(--transition-medium);
}

.transition-slow {
    transition: var(--transition-slow);
}
