/* ==========================================
   BAR DO AÇOUGUEIRO - CSS OTIMIZADO
   Versão Final - Organizado e Corrigido
   ========================================== */

/* ==========================================
   1. VARIÁVEIS CSS
   ========================================== */
:root {
    /* Cores Principais */
    --primary-dark: #1a1410;
    --primary-brown: #3d2817;
    --accent-red: #8B2500;
    --accent-orange: #D2996E;
    --warm-brown: #5C4033;
    --light-tan: #D4A574;
    --cream: #F5E6D3;
    --white: #FFFFFF;
    --gray-dark: #2d2925;
    --gray-medium: #4a4440;
    --gray-light: #D3D3D3;
    
    /* Fontes */
    --font-heading: 'Bebas Neue', 'Arial Black', Impact, sans-serif;
    --font-title: 'Oswald', Arial, Helvetica, sans-serif;
    --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}


/* ==========================================
   2. RESET E CONFIGURAÇÕES GLOBAIS
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--white);
    background-color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


/* ==========================================
   3. CONTAINER E SEÇÕES
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-label {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}


/* ==========================================
   4. BOTÕES
   ========================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border-radius: 3px;
    will-change: transform;
}

.btn-primary {
    background-color: var(--accent-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--accent-red);
    color: var(--white);
}


/* ==========================================
   5. NAVEGAÇÃO (CORRIGIDA)
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 20, 16, 0.95);
    padding: 20px 0;
    z-index: 1000;
    transition: padding 0.2s;
    border-bottom: 1px solid rgba(200, 90, 30, 0.3);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO CORRIGIDA - SEM ESTICAR */
.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    transition: transform 0.2s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

.navbar.scrolled .logo-image {
    height: 40px;
}

/* MENU CENTRALIZADO */
.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.2s;
}

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

.nav-link:hover {
    color: var(--accent-orange);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: transform 0.2s, opacity 0.2s;
}


/* ==========================================
   6. HERO SECTION
   ========================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 20, 16, 0.6), rgba(26, 20, 16, 0.7)),
                url('/img/Hero-Bar-churrasco-curitiba.jpg') center/cover fixed;
    will-change: transform;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-title);
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--accent-orange);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 5px;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
    line-height: 1;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--accent-orange);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}


/* ==========================================
   7. ABOUT SECTION
   ========================================== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--primary-dark) 0%, var(--primary-brown) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    font-size: 1.05rem;
    color: var(--gray-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    min-width: 50px;
}

.feature-item h4 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--gray-light);
    font-size: 0.95rem;
}


/* ==========================================
   8. MENU SECTION
   ========================================== */
.menu-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    font-family: var(--font-title);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: transparent;
    color: var(--gray-light);
    border: 2px solid var(--gray-medium);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    border-radius: 3px;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--accent-red);
    color: var(--white);
    border-color: var(--accent-red);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--gray-dark) 100%);
    padding: 30px;
    border-radius: 5px;
    border: 1px solid var(--gray-medium);
    transition: transform 0.2s, border-color 0.2s;
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.menu-item h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--white);
    flex: 1;
}

.price {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--accent-orange);
    font-weight: 600;
}

.menu-item-description {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.menu-item-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.75rem;
    padding: 5px 12px;
    background-color: var(--accent-red);
    color: var(--white);
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}


/* ==========================================
   9. GALLERY SECTION
   ========================================== */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--primary-dark) 0%, var(--primary-brown) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(26, 20, 16, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-overlay h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 1px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}


/* ==========================================
   10. TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--gray-dark) 100%);
    padding: 40px;
    border-radius: 5px;
    border: 1px solid var(--gray-medium);
    transition: transform 0.2s, border-color 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.stars {
    font-size: 1.2rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-title);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--accent-orange);
}


/* ==========================================
   11. LOCATIONS SECTION
   ========================================== */
.locations-section {
    padding: 100px 0;
    background-color: var(--primary-dark);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.location-card {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--gray-dark) 100%);
    padding: 40px 30px;
    border-radius: 5px;
    border: 1px solid var(--gray-medium);
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
}

.location-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.location-card h3 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.location-badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 5px 15px;
    background-color: var(--accent-orange);
    color: var(--white);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 20px;
}

.location-address {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.location-buttons .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.location-hours {
    color: var(--accent-orange);
    font-size: 0.95rem;
    font-weight: 500;
}


/* ==========================================
   12. CASHBACK SECTION
   ========================================== */
.cashback-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-brown) 50%, var(--primary-dark) 100%);
}


/* ==========================================
   13. FOOTER
   ========================================== */
.footer {
    background: #0d0a08;
    padding: 80px 0 0;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(210, 153, 110, 0.2);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-image {
    max-width: 220px;
    height: auto;
    margin-bottom: 25px;
}

.footer-description {
    color: #b8b8b8;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(210, 153, 110, 0.1);
    border: 2px solid rgba(210, 153, 110, 0.3);
    border-radius: 50%;
    color: var(--accent-orange);
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-orange);
    color: var(--primary-dark);
}

.footer-links h3,
.footer-hours h3,
.footer-contact h3 {
    color: var(--accent-orange);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--accent-orange);
    display: inline-block;
    padding-bottom: 8px;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--accent-orange);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(210, 153, 110, 0.1);
    font-size: 0.9rem;
}

.hours-day {
    color: var(--accent-orange);
    font-weight: 500;
}

.hours-time {
    color: #b8b8b8;
}

.hours-item.closed .hours-time {
    color: var(--accent-red);
    font-style: italic;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(210, 153, 110, 0.1);
    border-radius: 8px;
    color: var(--accent-orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-label {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.contact-value {
    color: #b8b8b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-value a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-value a:hover {
    color: var(--accent-orange);
}

.footer-cta {
    margin-top: 25px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-orange);
    color: var(--primary-dark);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s;
    border: 2px solid var(--accent-orange);
}

.footer-cta-btn:hover {
    opacity: 0.85;
    background-color: var(--accent-red);
    border-color: var(--accent-red);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #888;
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-copyright a:hover {
    color: var(--white);
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-label {
    color: #888;
    font-size: 0.85rem;
}

.payment-icons {
    display: flex;
    gap: 10px;
}

.payment-icon {
    width: 45px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #888;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* ==========================================
   14. SCROLL TO TOP BUTTON
   ========================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 999;
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--accent-orange);
    transform: translateY(-5px);
}


/* ==========================================
   15. COOKIE NOTICE (LGPD)
   ========================================== */
.cookie-notice {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: rgba(26, 20, 16, 0.98);
    border-top: 3px solid var(--accent-orange);
    padding: 25px 20px;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s ease-in-out;
}

.cookie-notice.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

.cookie-text strong {
    color: var(--white);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.cookie-text a {
    color: var(--accent-orange);
    text-decoration: underline;
    transition: opacity 0.2s;
}

.cookie-text a:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 35px;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.2s, transform 0.2s;
}

.cookie-accept {
    background-color: var(--accent-red);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: var(--accent-orange);
    transform: translateY(-2px);
}

.cookie-decline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--gray-medium);
}

.cookie-decline:hover {
    background-color: var(--gray-medium);
    border-color: var(--gray-light);
}


/* ==========================================
   16. POPUPS (PRIVACIDADE E EXIT INTENT)
   ========================================== */
.privacy-popup-overlay,
.exit-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.privacy-popup-overlay.show,
.exit-popup-overlay.show {
    display: flex;
}

.privacy-popup,
.exit-popup {
    background: var(--primary-dark);
    border: 2px solid var(--accent-orange);
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.privacy-popup h2,
.exit-popup h2 {
    color: var(--accent-orange);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.privacy-popup h3,
.exit-popup h3 {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-top: 25px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.privacy-popup p,
.exit-popup p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #ccc;
}

.privacy-popup ul,
.exit-popup ul {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 20px;
}

.privacy-popup-close,
.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--accent-orange);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-popup-close:hover,
.exit-popup-close:hover {
    transform: rotate(90deg);
    color: var(--white);
}

.exit-popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-orange);
    color: var(--primary-dark);
    padding: 18px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    border: 2px solid transparent;
}

.exit-popup-btn:hover {
    background: #C28858;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(210, 153, 110, 0.4);
}

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


/* ==========================================
   17. RESPONSIVE (MOBILE)
   ========================================== */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* LOGO MOBILE */
    .logo-image {
        height: 40px;
    }
    
    /* MENU MOBILE */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: rgba(26, 20, 16, 0.98);
        width: 100%;
        padding: 30px;
        gap: 20px;
        transition: left 0.3s;
        border-top: 1px solid var(--gray-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* HERO MOBILE */
    .hero-title {
        font-size: 2rem;
    }
    
    /* SEÇÕES MOBILE */
    .section-title {
        font-size: 2.2rem;
    }
    
    .menu-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-grid,
    .testimonials-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    /* FOOTER MOBILE */
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo-image {
        margin: 0 auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links h3,
    .footer-hours h3,
    .footer-contact h3 {
        text-align: center;
        width: 100%;
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
    }
    
    /* POPUPS MOBILE */
    .privacy-popup,
    .exit-popup {
        padding: 30px 20px;
        width: 95%;
        max-height: 90vh;
    }
    
    .privacy-popup h2,
    .exit-popup h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 38px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .scroll-top-btn {
        width: 45px;
        height: 45px;
    }
    
    .footer-logo-image {
        max-width: 180px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
}


/* ==========================================
   18. PERFORMANCE E ACESSIBILIDADE
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}