/* ===== CSS Variables ===== */
:root {
    --primary-color: #c41e3a;
    --primary-dark: #9a1830;
    --secondary-color: #f5a623;
    --secondary-light: #ffb84d;
    /* estilo predominante: preto e branco */
    --dark-color: #000000;
    --text-dark: #000000;
    --text-light: #333333;
    --text-muted: #6a6a6a;
    --white: #ffffff;
    --cream: #fff9f5;
    /* fundo claro levemente frio (contraste sobre branco) */
    --light-bg: #fafafa;
    --border-color: #e5e5e5;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-display: 'Cormorant Garamond', serif;
    --font-accent: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title.light {
    color: var(--white);
}

.section-title.light::after {
    background: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

/* CTAs primários — vermelho forte para maior conversão (conforme preferência) */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.25);
    border: 1px solid rgba(0,0,0,0.06);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(196, 30, 58, 0.30);
    outline: none;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.2rem;
}

.btn:focus {
    box-shadow: 0 0 0 4px rgba(196,30,58,0.08);
    border-radius: 30px;
} 

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

/* ===== Top Coupon Banner ===== */
.top-banner {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-banner p {
    margin: 0;
}

.top-banner .banner-link {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: underline;
    margin-left: 8px;
}

.top-banner .banner-link:hover {
    color: var(--white);
}

/* ===== Header ===== */
.header {
    background: #000000;
    height: auto;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* ensure header scales on smaller screens */
@media (max-width: 768px) {
    .top-banner { font-size: 0.75rem; padding: 8px 10px; }
    .header { height: auto; padding: 8px 0; top: 36px; }
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    /* logo fixa em 150px conforme solicitado */
    height: 150px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo .logo-img {
    height: 65px;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-weight: 600;
    color: var(--white);
    position: relative;
    padding: 5px 0;
}

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

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

.nav-link.active {
    color: var(--secondary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.phone:hover {
    background: var(--primary-color);
    color: var(--white);
}

.header-icons {
    display: flex;
    gap: 15px;
}

.icon-link {
    color: var(--white);
    font-size: 1.3rem;
    position: relative;
}

.icon-link:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    /* compensar banner topo (40px) + header (~170px) + espaço extra */
    padding-top: 240px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    /* fundo escuro puro (preto) — mantém contraste com conteúdo em branco */
    background: linear-gradient(135deg, #000000 0%, #111111 40%, #222222 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, transparent 100%);
    opacity: 0.1;
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23c41e3a' fill-opacity='0.1' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,58.7C960,64,1056,64,1152,58.7C1248,53,1344,43,1392,37.3L1440,32L1440,100L1392,100C1344,100,1248,100,1152,100C1056,100,960,100,864,100C768,100,672,100,576,100C480,100,384,100,288,100C192,100,96,100,48,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.title-line1 {
    display: block;
    font-size: 3.2rem;
    color: var(--white);
    text-transform: uppercase;
}

.title-line2 {
    display: block;
    font-size: 3.2rem;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.hero-promo {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 25px;
    padding: 12px 18px;
    background: rgba(245, 166, 35, 0.2);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.hero-promo strong {
    color: var(--secondary-color);
}

.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-food-img {
    width: 100%;
    max-width: 560px; /* levemente maior para destacar sem quebrar layout */
    margin: 0 auto; /* centraliza dentro do contêiner */
    /* deslocamento sutil para a esquerda (ajuste visual solicitado) */
    margin-left: -6%;
    object-fit: contain;
    object-position: center center;
    /* garantir canto reto e fundo transparente */
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none;
    animation: float 4s ease-in-out infinite;
}

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

/* floating-ingredients removed — images shown directly without overlay */

/* ===== Menu Categories - Escolhe Seu Nível ===== */
.menu-categories {
    padding: 80px 0;
    background: var(--white);
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 35px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: var(--transition);
    min-width: 150px;
}

.category-item:hover,
.category-item.active {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-item:hover span,
.category-item.active span {
    color: var(--white);
}

.category-icon {
    font-size: 2.5rem;
}

.category-item span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: center;
}

/* Level Cards */
.level-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.level-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.level-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.level-icon {
    font-size: 2rem;
}

.level-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.level-items {
    margin-bottom: 20px;
}

.level-items li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.level-items li:last-child {
    border-bottom: none;
}

.level-tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

.level-tagline strong {
    color: var(--secondary-color);
}

/* Level card CTA buttons */
.btn-level {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 22px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-level:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== Promotional Banners ===== */
.promo-banners {
    padding: 40px 0 60px;
    background: var(--white);
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 15px;
}

.banner {
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: var(--transition);
    min-height: 180px;
}

.banner:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-icon {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 4rem;
    opacity: 0.2;
    z-index: 1;
}

.banner-emoji {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.banner-badge {
    display: inline-block;
    background: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.banner-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.9;
}

.banner h3 {
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 5px;
    font-weight: 700;
}

.banner h3 strong {
    color: var(--secondary-color);
}

.banner-detail {
    font-size: 0.8rem;
    opacity: 0.85;
    margin-top: 5px;
}

.banner-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 8px;
}

.banner-price-big {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 10px;
}

.banner-discount {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 8px;
}

/* Banner Grande - Combo 6 Empadinhas */
.banner-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 100%;
}

.banner-combo {
    /* manter visual preto/branco para destaque */
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    color: var(--white);
}

.banner-combo h3 {
    font-size: 1.6rem;
}

.banner-combo p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* Banner Duplo */
.banner-duplo {
    background: linear-gradient(135deg, var(--secondary-color), #e89a1c);
    color: var(--text-dark);
}

/* Banner Quiche */
.banner-quiche {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

/* Banner Família */
.banner-familia {
    background: linear-gradient(135deg, #e85a1c, #f5a623);
    color: var(--dark-color);
}

/* Banner Lançamento */
.banner-launch {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.promo-warning {
    text-align: center;
    margin-top: 25px;
    font-weight: 600;
    color: var(--text-muted);
    font-style: italic;
    font-size: 1rem;
}

/* Responsivo - Mantém estrutura igual, apenas redimensiona */
@media (max-width: 992px) {
    .banners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .banner-large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 200px;
    }
    
    .banner {
        min-height: 160px;
    }
}

@media (max-width: 576px) {
    .banners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .banner-large {
        grid-column: span 2;
        min-height: 180px;
    }
    
    .banner {
        min-height: 140px;
        padding: 15px;
    }
    
    .banner h3 {
        font-size: 0.95rem;
    }
    
    .banner-combo h3 {
        font-size: 1.2rem;
    }
    
    .banner-price {
        font-size: 1.4rem;
    }
    
    .banner-price-big {
        font-size: 1.8rem;
    }
    
    .banner-emoji {
        font-size: 1.2rem;
    }
    
    .banner-detail {
        font-size: 0.7rem;
    }
    
    .banner-discount {
        font-size: 0.85rem;
        padding: 4px 10px;
    }
}

/* ===== Best Sellers - Os Mais Pedidos ===== */
.best-sellers {
    padding: 80px 0;
    background: var(--light-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-card.featured {
    border: 3px solid var(--secondary-color);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-hot {
    background: rgba(245, 166, 35, 0.2);
    color: #c47a00;
}

.badge-best {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.badge-new {
    background: rgba(196, 30, 58, 0.15);
    color: var(--primary-color);
}

.product-image {
    text-align: center;
    margin-bottom: 15px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 100%;
    width: auto;
    border-radius: 15px;
    object-fit: cover;
}

.product-info {
    text-align: center;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.product-price {
    margin-bottom: 15px;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

.btn-add-cart {
    width: 100%;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-add-cart:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-featured {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-featured:hover {
    background: var(--primary-color);
    color: var(--white);
}

.see-all {
    text-align: center;
}

/* ===== About Section - Feito no 021 ===== */
.about-section {
    padding: 80px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.about-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition);
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.about-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.about-item h4 {
    font-size: 1rem;
    color: var(--text-dark);
}

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

.about-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.about-cta strong {
    color: var(--secondary-color);
}

/* ===== Menu Board ===== */
.menu-board {
    padding: 80px 0;
    /* seção do cardápio com fundo preto/contraste — cores secundárias para acento */
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    position: relative;
}

.menu-board::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.menu-column {
    color: var(--white);
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.menu-category-title:first-child {
    margin-top: 0;
}

.menu-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
    font-size: 0.85rem;
    transition: var(--transition);
    padding: 5px 0;
    overflow: hidden;
}

.item-name {
    flex-shrink: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    margin: 0 10px 5px;
}

.item-price {
    color: var(--secondary-color);
    font-weight: 600;
    flex-shrink: 0;
}

.menu-item-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -8px;
    margin-bottom: 15px;
    font-style: italic;
}

.combo-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.highlight-item {
    background: rgba(245, 166, 35, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
}

.featured-combo {
    background: rgba(245, 166, 35, 0.3);
    border: 1px solid var(--secondary-color);
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow);
    position: relative;
    text-align: center;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 600;
}

.instagram-cta {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: var(--white);
}

.instagram-cta p {
    font-size: 1.1rem;
    font-weight: 600;
}

.instagram-cta i {
    margin-right: 8px;
    font-size: 1.3rem;
}

/* ===== Final CTA - Último Chamado ===== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '🔥';
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-promo {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-promo strong {
    color: var(--secondary-color);
}

.cta-urgency {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.final-cta .btn-primary {
    /* CTA final com foco primário vermelho */
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 35px rgba(196,30,58,0.28);
}

.final-cta .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: var(--white);
} 

/* ===== Footer ===== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-links.hours li {
    display: flex;
    justify-content: space-between;
}

.footer-links.hours span {
    color: var(--white);
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom i.fa-heart {
    color: var(--primary-color);
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-promo {
        display: inline-block;
    }
    
    .level-cards {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .phone span {
        display: none;
    }
    
    .phone {
        padding: 12px;
        border-radius: 50%;
    }
    
    .title-line1,
    .title-line2 {
        font-size: 2.5rem;
    }

    /* mobile: ajustar logo e garantir que no mobile a imagem volte ao centro */
    .logo-img { height: 55px; }

    .main-food-img {
        margin-left: 0 !important;
        object-position: center center !important;
        max-width: 320px;
    }
    
    .categories-grid {
        gap: 15px;
    }
    
    .category-item {
        min-width: 120px;
        padding: 15px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }

    .title-line1,
    .title-line2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* ===== Hero Buttons ===== */
.hero-buttons {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-roulette-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin: 6px 0 0 4px;
    font-style: italic;
    line-height: 1.3;
}

.btn-roulette {
    background: var(--secondary-color);
    color: var(--dark-color);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.3);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 32px;
    border-radius: 30px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1.5;
}

.banner-link {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: underline;
    margin-left: 8px;
    cursor: pointer;
}

.banner-link:hover {
    color: var(--white);
}

.btn-roulette:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(245, 166, 35, 0.4);
}

/* ===== Loyalty Section ===== */
.loyalty-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.loyalty-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.loyalty-lead {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.loyalty-lead strong {
    color: var(--primary-color);
}

.loyalty-points {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.loyalty-point {
    background: var(--white);
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.loyalty-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.loyalty-tagline {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.loyalty-tagline strong {
    color: var(--primary-color);
}

/* ===== Menu Info Blocks ===== */
.menu-update-info {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.menu-info-block {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.menu-info-block h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.menu-info-block p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 3px;
    line-height: 1.5;
}

/* ===== Roulette Modal v5 ===== */
.roulette-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.roulette-overlay.active {
    display: flex;
}

.roulette-modal {
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
    border-radius: 24px;
    padding: 36px 28px;
    max-width: 480px;
    width: 92%;
    text-align: center;
    position: relative;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
    border: 1px solid rgba(194,74,46,0.3);
    max-height: 92vh;
    overflow-y: auto;
}

.roulette-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 2rem;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: color 0.2s;
}
.roulette-close:hover { color: #C24A2E; }

.roulette-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: #F5F0EB;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.roulette-subtitle {
    font-size: 0.9rem;
    color: rgba(245,240,235,0.6);
    margin-bottom: 24px;
    line-height: 1.5;
}
.roulette-subtitle strong {
    color: rgba(245,240,235,0.85);
}

/* === Registration Form Stage === */
.roulette-email-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.roulette-register-form {
    margin: 20px 0 8px;
}

.roulette-field {
    margin-bottom: 10px;
}

.roulette-input {
    display: block;
    width: 100%;
    padding: 13px 16px;
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: #F5F0EB;
    font-size: 0.95rem;
    font-family: var(--font-body);
    text-align: center;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}
.roulette-input::placeholder {
    color: rgba(245,240,235,0.3);
}
.roulette-input:focus {
    border-color: rgba(194,74,46,0.6);
    box-shadow: 0 0 0 3px rgba(194,74,46,0.15);
}
.roulette-input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231,76,60,0.15);
}

.roulette-form-error {
    font-size: 0.8rem;
    color: #e74c3c;
    margin: 6px 0 0;
}

.btn-unlock {
    margin-top: 14px;
    width: 100%;
}

/* Wheel wrapper */
.roulette-wheel-wrapper {
    position: relative;
    width: 340px;
    height: 340px;
    margin: 0 auto 20px;
}

.roulette-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194,74,46,0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

.roulette-pointer-wrap {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.roulette-pointer-wrap svg {
    width: 28px;
    height: 22px;
}

.roulette-wheel {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 5px solid rgba(255,255,255,0.15);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.3), 0 8px 30px rgba(0,0,0,0.4);
}

.roulette-wheel .wheel-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Spin button */
.btn-spin {
    display: inline-block;
    background: linear-gradient(135deg, #C24A2E, #A03820);
    color: #fff;
    border: none;
    padding: 14px 48px;
    border-radius: 30px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(194,74,46,0.4);
}
.btn-spin:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(194,74,46,0.5);
    background: linear-gradient(135deg, #D4603E, #C24A2E);
}
.btn-spin:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.btn-spin.spinning {
    animation: pulseBtn 0.6s ease-in-out infinite;
}
@keyframes pulseBtn {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.roulette-hint {
    font-size: 0.75rem;
    color: rgba(245,240,235,0.35);
    margin-top: 12px;
    margin-bottom: 0;
}

/* Stage 2 — Result */
.roulette-status-msg {
    font-size: 0.85rem;
    color: #f5a623;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.roulette-result-icon {
    margin: 0 auto 16px;
    width: 72px;
    height: 72px;
}
.roulette-result-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(194,74,46,0.3));
}

.result-reveal {
    animation: resultFadeIn 0.6s ease forwards;
}
@keyframes resultFadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.roulette-prize {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: #C24A2E;
    margin-bottom: 8px;
    line-height: 1.3;
}

.roulette-result-copy {
    font-size: 0.9rem;
    color: rgba(245,240,235,0.7);
    margin-bottom: 12px;
    line-height: 1.5;
    padding: 0 8px;
}

.roulette-rule {
    font-size: 0.85rem;
    color: rgba(245,240,235,0.6);
    margin-bottom: 8px;
}

.roulette-validity {
    font-size: 0.8rem;
    color: rgba(245,240,235,0.4);
    margin-bottom: 20px;
    font-style: italic;
}
.roulette-validity.expired {
    color: #e74c3c;
    font-style: normal;
    font-weight: 600;
}
.roulette-validity.cooling {
    color: #f5a623;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
}
.roulette-validity.cooling strong {
    color: #fff;
}

.roulette-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.roulette-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

.roulette-footer {
    font-size: 0.7rem;
    color: rgba(245,240,235,0.25);
    margin-top: 14px;
    margin-bottom: 0;
}

/* Responsive wheel */
@media (max-width: 480px) {
    .roulette-modal { padding: 24px 16px; }
    .roulette-wheel-wrapper { width: 280px; height: 280px; }
    .roulette-wheel { width: 280px; height: 280px; }
    .roulette-title { font-size: 1.3rem; }
    .btn-spin { padding: 12px 36px; font-size: 1rem; }
    .roulette-input { font-size: 0.9rem; padding: 12px 14px; }
}

/* ========== ORDER MODAL ========== */
.order-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.82);
    z-index: 10000;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding: 24px 8px;
    -webkit-overflow-scrolling: touch;
}
.order-overlay.active {
    display: flex;
}
.order-modal {
    background: #1a1a1a;
    border-radius: 18px;
    max-width: 520px;
    width: 100%;
    padding: 32px 28px 24px;
    position: relative;
    color: #f5f0eb;
    box-shadow: 0 24px 64px rgba(0,0,0,0.6);
    animation: orderSlideIn 0.35s ease;
    margin: auto;
}
@keyframes orderSlideIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.order-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: #f5f0eb;
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    z-index: 2;
}
.order-close:hover { opacity: 1; }
.order-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #f5a623;
    text-align: center;
    margin-bottom: 4px;
}
.order-subtitle {
    text-align: center;
    font-size: 0.88rem;
    color: rgba(245,240,235,0.55);
    margin-bottom: 20px;
}

/* Contact fields */
.order-contact { margin-bottom: 18px; }
.order-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(245,166,35,0.25);
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: #f5f0eb;
    font-size: 0.95rem;
    margin-bottom: 10px;
    transition: border-color 0.25s;
    box-sizing: border-box;
}
.order-input::placeholder { color: rgba(245,240,235,0.35); }
.order-input:focus {
    outline: none;
    border-color: #f5a623;
    background: rgba(255,255,255,0.09);
}
.order-input.error {
    border-color: #c41e3a;
    animation: shake 0.4s;
}
.order-hint {
    font-size: 0.72rem;
    color: rgba(245,240,235,0.35);
    margin-top: -6px;
    margin-bottom: 10px;
}

/* Menu sections */
.order-menu { margin-bottom: 16px; }
.order-section {
    margin-bottom: 14px;
}
.order-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(245,166,35,0.15);
}
.order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    gap: 10px;
}
.order-item-name {
    flex: 1;
    font-size: 0.9rem;
    color: #f5f0eb;
    line-height: 1.3;
}
.order-price {
    font-size: 0.85rem;
    color: #f5a623;
    font-weight: 600;
    white-space: nowrap;
    min-width: 65px;
    text-align: right;
}
.order-qty {
    width: 52px;
    padding: 6px 4px;
    text-align: center;
    border: 1px solid rgba(245,166,35,0.25);
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: #f5f0eb;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.order-qty:focus {
    outline: none;
    border-color: #f5a623;
}

/* Observations */
.order-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(245,166,35,0.25);
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    color: #f5f0eb;
    font-size: 0.9rem;
    resize: vertical;
    min-height: 60px;
    margin-bottom: 14px;
    box-sizing: border-box;
}
.order-textarea::placeholder { color: rgba(245,240,235,0.35); }
.order-textarea:focus {
    outline: none;
    border-color: #f5a623;
}

/* Footer / Total */
.order-footer {
    text-align: center;
}
.order-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 14px;
}
.order-total span {
    font-size: 1.35rem;
}
.btn-order-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-order-submit:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-order-submit svg {
    width: 20px;
    height: 20px;
}
.order-error {
    display: none;
    color: #c41e3a;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 10px;
}

/* Responsive order modal */
@media (max-width: 480px) {
    .order-modal { padding: 24px 16px 18px; }
    .order-title { font-size: 1.35rem; }
    .order-item { flex-wrap: wrap; gap: 4px 10px; }
    .order-item-name { min-width: 55%; }
    .btn-order-submit { padding: 12px 28px; font-size: 0.95rem; }
}
