/* ============================================
Quinda - STYLES.CSS
Elite Max Design System
============================================ */
/* --- VARIÁVEIS --- */
:root {
--primary: #E63946;
--primary-dark: #C1121F;
--secondary: #F4A261;
--accent: #2A9D8F;
--accent-light: #E9C46A;
--dark: #1D1D1D;
--dark-soft: #2B2B2B;
--cream: #FFF8F0;
--gray: #6C757D;
--light-gray: #F5F5F5;
--shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
--shadow-md: 0 8px 24px rgba(0,0,0,0.12);
--shadow-lg: 0 20px 50px rgba(0,0,0,0.2);
--gradient-warm: linear-gradient(135deg, #E63946 0%, #F4A261 100%);
--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', sans-serif; color: var(--dark); background: var(--cream); overflow-x: hidden; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
/* --- HEADER --- */
.header { position: sticky; top: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); z-index: 1000; padding: 16px 0; box-shadow: var(--shadow-sm); }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { font-size: 2rem; }
.logo-main { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.4rem; display: block; color: var(--dark); }
.logo-sub { font-size: 0.75rem; color: var(--gray); display: block; letter-spacing: 1px; text-transform: uppercase; }
.nav-list { display: none; list-style: none; gap: 32px; }
@media (min-width: 968px) { .nav-list { display: flex; } }
.nav-link { font-weight: 500; color: var(--dark); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); border: none; cursor: pointer; position: relative; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.cart-btn:hover { background: var(--primary); color: white; }
.cart-count { position: absolute; top: -4px; right: -4px; background: var(--primary); color: white; font-size: 0.7rem; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.menu-toggle { background: none; border: none; cursor: pointer; display: flex; flex-direction: column; gap: 5px; padding: 10px; }
@media (min-width: 968px) { .menu-toggle { display: none; } }
.hamburger { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
/* --- HERO --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; color: white; overflow: hidden; padding: 100px 0 60px; }
.hero-video-container { position: absolute; inset: 0; z-index: 0; }
.hero-video-container video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(230,57,70,0.85) 0%, rgba(29,29,29,0.75) 100%); }
.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(244,162,97,0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(42,157,143,0.15) 0%, transparent 50%); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; padding: 0 24px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.2); }
.badge-dot { width: 8px; height: 8px; background: var(--accent-light); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title { font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 800; margin-bottom: 24px; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.highlight-text { color: var(--accent-light); font-style: italic; font-family: 'Dancing Script', cursive; font-weight: 700; }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.25rem); max-width: 700px; margin: 0 auto 40px; opacity: 0.95; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: center; }
.stat-item { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; color: var(--accent-light); display: block; }
.stat-suffix { color: var(--accent-light); font-size: 1.5rem; }
.stat-label { display: block; font-size: 0.85rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }
@media (max-width: 480px) { .stat-divider { display: none; } }
.hero-scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); text-align: center; z-index: 2; color: rgba(255,255,255,0.8); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; }
.scroll-mouse { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.6); border-radius: 12px; margin: 10px auto 0; position: relative; }
.scroll-wheel { width: 4px; height: 8px; background: white; border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollDown 1.5s ease-in-out infinite; }
@keyframes scrollDown { 0% { opacity: 1; transform: translateX(-50%) translateY(0); } 100% { opacity: 0; transform: translateX(-50%) translateY(12px); } }
/* --- BUTTONS --- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: 1rem; transition: var(--transition); border: none; cursor: pointer; box-shadow: var(--shadow-md); }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: white; border: 2px solid white; }
.btn-ghost:hover { background: white; color: var(--dark); }
.btn-secondary { background: var(--accent); color: white; }
.btn-secondary:hover { background: #238b7e; transform: translateY(-2px); }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: transparent; color: white; border: 2px solid white; display: inline-flex; align-items: center; gap: 10px; }
.btn-outline-white:hover { background: white; color: var(--primary); }
.btn-full { width: 100%; justify-content: center; }
/* --- SECTIONS --- */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag { color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; display: block; margin-bottom: 12px; }
.section-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 16px; }
.highlight { color: var(--primary); font-style: italic; }
.section-description { max-width: 650px; margin: 0 auto; color: var(--gray); font-size: 1.05rem; }
/* --- CATEGORIES --- */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.category-card { background: white; padding: 32px 20px; border-radius: 20px; text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border: 2px solid transparent; }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.category-icon { font-size: 3rem; margin-bottom: 12px; display: block; }
.category-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.category-card p { font-size: 0.85rem; color: var(--gray); }
/* --- PRODUCT CARDS --- */
.menu-preview { background: white; }
.menu-section { padding: 40px 0 60px; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; margin-bottom: 60px; }
.product-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); cursor: pointer; position: relative; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-image-wrapper { position: relative; height: 220px; overflow: hidden; }
.product-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-image { transform: scale(1.08); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--primary); color: white; padding: 6px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; box-shadow: var(--shadow-sm); z-index: 2; }
.product-content { padding: 20px; }
.product-meta { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--gray); margin-bottom: 8px; }
.product-meta i { color: var(--primary); }
.product-title { font-size: 1.2rem; margin-bottom: 8px; }
.product-description { color: var(--gray); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 42px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--light-gray); gap: 12px; }
.product-price { display: flex; flex-direction: column; }
.old-price { font-size: 0.85rem; color: var(--gray); text-decoration: line-through; }
.current-price { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.btn-add-cart { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: white; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.btn-add-cart:hover { background: var(--primary-dark); transform: scale(1.1); }
/* ============================================
   CONTROLES DE QUANTIDADE (ONE-CLICK)
   ============================================ */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--light-gray);
    border-radius: 50px;
    padding: 6px;
    transition: var(--transition);
}
.quantity-controls.active {
    background: var(--cream);
    border: 2px solid var(--primary);
}
.btn-quantity {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--light-gray);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.btn-quantity:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
}
.btn-quantity:active {
    transform: scale(0.95);
}
.quantity-display {
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 24px;
    text-align: center;
    color: var(--dark);
}
/* Animação Shake do Cestinho */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-4px) rotate(-5deg); }
    40% { transform: translateX(4px) rotate(5deg); }
    60% { transform: translateX(-3px) rotate(-3deg); }
    80% { transform: translateX(3px) rotate(3deg); }
}
.cart-btn.shake {
    animation: shake 0.5s ease-in-out;
}
/* --- MENU HERO (Cardápio) --- */
.menu-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden; }
.menu-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%); }
.menu-hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; position: relative; }
.menu-hero p { font-size: 1.1rem; opacity: 0.95; max-width: 600px; margin: 0 auto 32px; position: relative; }
.search-bar { max-width: 600px; margin: 0 auto; position: relative; }
.search-bar input { width: 100%; padding: 16px 24px 16px 56px; border: none; border-radius: 50px; font-size: 1rem; box-shadow: var(--shadow-lg); outline: none; transition: var(--transition); }
.search-bar input:focus { box-shadow: 0 0 0 4px rgba(255,255,255,0.3); }
.search-bar i { position: absolute; left: 22px; top: 50%; transform: translateY(-50%); color: var(--gray); font-size: 1.1rem; }
.search-clear { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--gray); cursor: pointer; display: none; font-size: 1rem; }
.search-clear.visible { display: block; }
/* --- FILTERS & SORT --- */
.menu-controls { background: white; padding: 30px 0; position: sticky; top: 76px; z-index: 100; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--light-gray); }
.controls-container { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 768px) { .controls-container { flex-direction: row; justify-content: space-between; align-items: center; } }
.filter-pills { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.filter-pills::-webkit-scrollbar { height: 4px; }
.filter-pills::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.filter-pill { padding: 10px 20px; border: 2px solid var(--light-gray); background: white; border-radius: 50px; cursor: pointer; font-weight: 500; font-size: 0.9rem; white-space: nowrap; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active { background: var(--primary); color: white; border-color: var(--primary); }
.filter-count { background: rgba(0,0,0,0.1); padding: 2px 8px; border-radius: 10px; font-size: 0.75rem; }
.filter-pill.active .filter-count { background: rgba(255,255,255,0.25); }
.results-sort { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.results-count { color: var(--gray); font-size: 0.95rem; }
.results-count strong { color: var(--dark); }
.sort-select { padding: 10px 40px 10px 16px; border: 2px solid var(--light-gray); border-radius: 10px; background: white; font-size: 0.9rem; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236C757D' d='M6 9L1 4h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; outline: none; }
/* --- SKELETON LOADING --- */
.skeleton { background: linear-gradient(90deg, var(--light-gray) 25%, #e9e9e9 50%, var(--light-gray) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 20px; }
.skeleton-card { height: 380px; }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
/* --- EMPTY STATE --- */
.empty-state { text-align: center; padding: 80px 20px; grid-column: 1 / -1; }
.empty-state i { font-size: 5rem; color: var(--gray); opacity: 0.3; margin-bottom: 20px; }
.empty-state h3 { font-size: 1.5rem; margin-bottom: 8px; }
.empty-state p { color: var(--gray); margin-bottom: 24px; }
/* --- ABOUT PREVIEW --- */
.about-preview { background: var(--cream); position: relative; overflow: hidden; }
.about-container { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
@media (min-width: 968px) { .about-container { grid-template-columns: 1fr 1fr; } }
.about-images { position: relative; }
.about-img-main { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: auto; display: block; }
.img-badge { position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: white; padding: 20px 28px; border-radius: 20px; text-align: center; box-shadow: var(--shadow-lg); }
.badge-year { font-size: 0.75rem; display: block; opacity: 0.9; }
.badge-number { font-size: 2rem; font-weight: 800; display: block; }
.about-intro { font-size: 1.1rem; margin-bottom: 20px; color: var(--dark-soft); }
.about-text { color: var(--gray); margin-bottom: 28px; }
/* --- TESTIMONIALS --- */
.testimonials { background: var(--dark); color: white; }
.testimonials .section-tag { color: var(--accent-light); }
.testimonials .highlight { color: var(--accent-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.testimonial-card { background: var(--dark-soft); padding: 32px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }
.testimonial-rating { color: var(--accent-light); margin-bottom: 16px; }
.testimonial-text { font-style: italic; margin-bottom: 24px; line-height: 1.7; opacity: 0.95; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; }
.testimonial-author span { font-size: 0.85rem; opacity: 0.7; }
.testimonials-cta { text-align: center; margin-top: 50px; }
.testimonials-cta .btn-ghost { border-color: white; }
/* --- COMBOS --- */
.combos-section { background: var(--dark); color: white; padding: 70px 0; }
.combos-section .section-header { text-align: center; margin-bottom: 40px; }
.combos-section h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 12px; }
.combos-section .highlight { color: var(--accent-light); }
.combos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.combo-card { background: var(--dark-soft); border-radius: 20px; overflow: hidden; transition: var(--transition); border: 2px solid transparent; }
.combo-card:hover { border-color: var(--accent-light); transform: translateY(-5px); }
.combo-image { height: 200px; overflow: hidden; position: relative; }
.combo-image img { width: 100%; height: 100%; object-fit: cover; }
.combo-badge { position: absolute; top: 12px; right: 12px; background: var(--accent-light); color: var(--dark); padding: 6px 14px; border-radius: 20px; font-weight: 700; font-size: 0.85rem; }
.combo-content { padding: 24px; }
.combo-content h3 { font-size: 1.3rem; margin-bottom: 8px; }
.combo-content p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 16px; }
.combo-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.combo-old-price { color: rgba(255,255,255,0.5); text-decoration: line-through; font-size: 1rem; }
.combo-new-price { color: var(--accent-light); font-size: 1.6rem; font-weight: 700; font-family: 'Playfair Display', serif; }
/* --- CTA FINAL --- */
.cta-final { background: var(--gradient-warm); color: white; text-align: center; padding: 100px 24px; position: relative; overflow: hidden; }
.cta-final::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%); }
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 20px; font-weight: 800; }
.cta-final p { font-size: 1.15rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; opacity: 0.95; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
/* --- FOOTER --- */
.footer { background: var(--dark); color: white; padding: 70px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { margin-bottom: 20px; color: var(--accent-light); font-size: 1.1rem; }
.footer-about { font-size: 0.9rem; line-height: 1.7; opacity: 0.8; margin: 20px 0; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.8); font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social-link { width: 40px; height: 40px; border-radius: 50%; background: var(--dark-soft); color: white; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social-link:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; opacity: 0.7; }
.payment-methods { display: flex; gap: 12px; font-size: 1.3rem; }
/* --- CART DRAWER --- */
.cart-drawer { position: fixed; top: 0; right: -100%; width: 100%; max-width: 420px; height: 100vh; background: white; z-index: 1500; box-shadow: -8px 0 24px rgba(0,0,0,0.15); transition: right 0.4s ease; display: flex; flex-direction: column; }
.cart-drawer.open { right: 0; }
.cart-header { padding: 20px 24px; border-bottom: 1px solid var(--light-gray); display: flex; justify-content: space-between; align-items: center; }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--light-gray); }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty i { font-size: 5rem; color: var(--gray); opacity: 0.3; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.95rem; }
.summary-row.total { font-size: 1.3rem; font-weight: 700; padding-top: 12px; border-top: 2px solid var(--light-gray); color: var(--primary); }
/* --- MODALS --- */
.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 2000; padding: 20px; }
.modal.active { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.modal-content { position: relative; background: white; border-radius: 20px; max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto; z-index: 1; animation: modalSlideUp 0.3s ease; }
@keyframes modalSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.modal-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; background: var(--light-gray); border: none; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.modal-close:hover { background: var(--primary); color: white; }
.modal-header { text-align: center; padding: 32px 32px 16px; }
.modal-icon { font-size: 3rem; margin-bottom: 12px; }
.modal-header h2 { font-size: 1.6rem; margin-bottom: 8px; }
.modal-header p { color: var(--gray); }
.drinks-section { padding: 20px 32px; }
.drinks-section h3 { margin-bottom: 16px; display: flex; align-items: center; gap: 8px; font-size: 1rem; }
.drinks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; margin-bottom: 24px; }
.drink-option { padding: 14px 10px; border: 2px solid var(--light-gray); border-radius: 12px; text-align: center; cursor: pointer; transition: var(--transition); }
.drink-option:hover { border-color: var(--primary); }
.drink-option.selected { border-color: var(--primary); background: var(--cream); }
.drink-option i { font-size: 1.8rem; margin-bottom: 8px; color: var(--primary); display: block; }
.drink-option p { font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; }
.drink-option span { font-size: 0.8rem; color: var(--gray); }
.drink-option.free span { color: var(--accent); font-weight: 600; }
.modal-actions { padding: 20px 32px 32px; display: flex; gap: 12px; }
.modal-actions .btn { flex: 1; justify-content: center; }
/* --- TOAST --- */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--dark); color: white; padding: 14px 24px; border-radius: 50px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; z-index: 3000; opacity: 0; transition: all 0.4s ease; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast i { color: var(--accent-light); }
/* --- FLOATING ELEMENTS --- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; z-index: 900; box-shadow: 0 6px 20px rgba(37,211,102,0.4); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); }
.back-to-top { position: fixed; bottom: 24px; left: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--primary); color: white; border: none; cursor: pointer; z-index: 900; display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: var(--transition); }
.back-to-top.visible { display: flex; }
.back-to-top:hover { transform: translateY(-3px); }
/* --- LOADING PRODUCTS --- */
.loading-products { text-align: center; grid-column: 1 / -1; padding: 60px 20px; color: var(--gray); }
.loader-spinner { width: 40px; height: 40px; border: 4px solid var(--light-gray); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 16px; }
@keyframes spin { to { transform: rotate(360deg); } }
/* --- RESPONSIVE --- */
@media (max-width: 768px) {
section { padding: 60px 0; }
.hero-title { font-size: 2.5rem; }
.hero-stats { gap: 24px; }
.stat-number { font-size: 2rem; }
.footer-bottom-content { flex-direction: column; text-align: center; }
.menu-controls { top: 70px; }
.quantity-controls {
    gap: 8px;
    padding: 4px;
}
.btn-quantity {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
}
.quantity-display {
    font-size: 1rem;
    min-width: 20px;
}
}
/* ============================================
   ESTILOS DO FORMULÁRIO DE CHECKOUT (MODAL)
   ============================================ */
.checkout-form {
    padding: 0 24px 24px;
}

.checkout-section {
    margin-bottom: 32px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 24px;
}

.checkout-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.section-title-checkout {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title-checkout .icon {
    color: var(--primary);
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-soft);
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--primary);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    background: white;
    outline: none;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Mensagem de Erro */
.form-error {
    display: none; /* Mantém oculto até ser ativado por JS */
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 6px;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

/* Caixa Informativa da Zona de Entrega */
.zone-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--cream);
    border: 1px dashed var(--secondary);
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 12px;
    color: var(--dark-soft);
}

.zone-info i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.zone-info-text {
    font-size: 0.9rem;
}

/* Opções de Pagamento Interativas */
.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.payment-option {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.payment-option:hover {
    border-color: var(--secondary);
    background: var(--cream);
}

.payment-option.active {
    border-color: var(--primary);
    background: var(--cream);
}

.payment-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--dark-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.payment-option.active .payment-icon {
    background: var(--primary);
    color: white;
}

.payment-info {
    display: flex;
    flex-direction: column;
}

.payment-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}

.payment-desc {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Resumo do Pedido no Checkout */
.checkout-summary {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 20px;
}

.summary-items {
    margin-bottom: 16px;
    max-height: 180px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--dark-soft);
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item-name {
    font-weight: 500;
}

.summary-item-qty {
    color: var(--gray);
}

.summary-item-price {
    font-weight: 600;
}

/* Alinhamento do Campo de Cupão */
.coupon-field {
    display: flex;
    gap: 10px;
}

.coupon-field .form-input {
    text-transform: uppercase;
}

.coupon-field .btn {
    padding: 12px 24px;
    flex-shrink: 0;
}

/* Botão de Envio / Confirmação do Pedido */
.confirm-order-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: var(--gradient-warm);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.confirm-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    opacity: 0.95;
}

.confirm-order-btn:active {
    transform: translateY(0);
}

/* Adaptações para Ecrãs Pequenos (Móvel) */
@media (max-width: 580px) {
    .payment-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .checkout-form {
        padding: 0 16px 16px;
    }
    .modal-content {
        border-radius: 16px;
        margin: 10px;
    }
}

/* DEPOIMENTOS DINÂMICOS - INDEX */
.testimonials-dynamic {
  background: var(--dark);
  color: white;
  padding: 80px 0;
}
.testimonials-dynamic .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.testimonials-dynamic .section-tag {
  color: var(--accent-light);
}
.testimonials-dynamic .section-title {
  color: white;
}
.testimonials-dynamic .section-title .highlight {
  color: var(--accent-light);
}
.testimonials-dynamic .section-description {
  color: rgba(255,255,255,0.7);
}
.testimonials-grid-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card-index {
  background: var(--dark-soft);
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  position: relative;
}
.testimonial-card-index:hover {
  transform: translateY(-6px);
  border-color: var(--accent-light);
}
.testimonial-card-index::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--accent-light);
  opacity: 0.15;
  line-height: 1;
}.testimonial-rating-index {
  color: var(--accent-light);
  margin-bottom: 16px;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.testimonial-text-index {
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
  opacity: 0.95;
  min-height: 90px;
}
.testimonial-author-index {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.testimonial-avatar-index {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.testimonial-author-info-index strong {
  display: block;
  color: white;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.testimonial-author-info-index span {
  font-size: 0.8rem;
  opacity: 0.7;
}
.testimonials-loading-index {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
  color: rgba(255,255,255,0.6);
}.testimonials-loading-index i {
  font-size: 2rem;
  color: var(--accent-light);
  margin-bottom: 12px;
  animation: spin 1s linear infinite;
}
.testimonials-cta-index {
  text-align: center;
  margin-top: 50px;
}
.testimonials-cta-index .btn-ghost {
  border-color: white;
}
/* FOTOS NOS DEPOIMENTOS */
.testimonial-avatar-index,
.testimonial-avatar {
  position: relative;
  overflow: hidden;
}
.testimonial-avatar-index img,
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-avatar-index.has-photo,
.testimonial-avatar.has-photo {
  padding: 3px;
  border: 3px solid var(--accent-light);
  background: white;
}