/* ============================================
   Melhor Faca para Churrasco
   Fontes locais (Inter + Playfair Display, latin)
   ============================================ */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/inter/inter-latin-400-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/inter/inter-latin-500-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/inter/inter-latin-600-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/inter/inter-latin-700-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/playfair/playfair-display-latin-400-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/playfair/playfair-display-latin-700-normal.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================
   Base
   ============================================ */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: #fafaf9; color: #1c1917; }
.font-display { font-family: 'Playfair Display', serif; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f5f5f4; }
::-webkit-scrollbar-thumb { background: #78716c; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #44403c; }

/* Focus styles */
a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid #92400e;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeUp 0.6s ease-out forwards; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.animate-fade-in { animation: fadeIn 0.5s ease-out forwards; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Hero overlay */
.hero-overlay {
    background: linear-gradient(135deg, rgba(12, 10, 9, 0.92) 0%, rgba(28, 25, 23, 0.75) 50%, rgba(12, 10, 9, 0.5) 100%);
}

/* Card hover */
.card-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15); }

/* Button primary */
.btn-primary {
    background-color: #92400e;
    color: white;
    transition: all 0.2s ease;
}
.btn-primary:hover { background-color: #78350f; transform: translateY(-1px); }

/* Button outline */
.btn-outline {
    border: 1.5px solid #1c1917;
    color: #1c1917;
    transition: all 0.2s ease;
}
.btn-outline:hover { background-color: #1c1917; color: white; }

/* Button dark */
.btn-dark {
    background-color: #0c0a09;
    color: white;
    transition: all 0.2s ease;
}
.btn-dark:hover { background-color: #1c1917; }

/* Search modal */
.search-modal {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Mobile menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }

/* FAQ accordion */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-content.open { max-height: 500px; }

/* Smooth image loading */
img { transition: opacity 0.3s ease; }

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0c0a09;
    color: white;
    padding: 8px 16px;
    z-index: 1000;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Divider */
.section-divider {
    background: linear-gradient(90deg, transparent, #d6d3d1, transparent);
    height: 1px;
}

/* Category card accent */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #92400e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.category-card:hover::before { transform: scaleX(1); }

/* Pillar badge */
.pillar-badge {
    background: linear-gradient(135deg, #92400e 0%, #78350f 100%);
}

/* Rating stars */
.star-filled { color: #92400e; }
.star-empty { color: #d6d3d1; }

/* Table responsive */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Print styles */
@media print {
    header, footer, .no-print { display: none !important; }
    body { background: white; }
}