/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

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

/* Header */
header {
    background-color: #1d1d1d;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 28px;
    margin: 0;
    color: #e63946;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: #e63946;
}

/* Banner */
.banner {
    background-image: url('upload/hamburgueria-mv0DXW4j2oUy993e.webp');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    background-color: #e63946;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #c1121f;
    transform: translateY(-2px);
}

/* Lojas */
.lojas {
    padding: 60px 0;
    text-align: center;
}

.lojas h2 {
    font-size: 36px;
    color: #1d1d1d;
}

.lojas p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

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

.loja-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.loja-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.loja-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.loja-card h3 {
    font-size: 24px;
    padding: 20px 20px 10px;
}

.status-bar {
    background-color: #e63946;
    color: #fff;
    padding: 8px 0;
    margin-bottom: 15px;
    position: relative;
}

.status-bar.aberto {
    background-color: #2a9d8f;
}

.status-bar.fechado {
    background-color: #e63946;
}

.status-text {
    font-weight: 600;
    letter-spacing: 1px;
}

.loja-card p {
    padding: 0 20px;
    margin-bottom: 10px;
    text-align: left;
    font-size: 14px;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    margin: 15px 0 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

/* Cadastro VIP */
.cadastro-vip {
    padding: 60px 0;
    background-color: #1d1d1d;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cadastro-vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.cadastro-vip .container {
    position: relative;
}

.cadastro-vip h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.logo-vip {
    font-size: 24px;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 30px;
}

.mensagem-cadastro {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
    transition: opacity 0.5s ease;
}

.mensagem-cadastro.sucesso {
    background-color: rgba(42, 157, 143, 0.2);
    color: #2a9d8f;
}

.mensagem-cadastro.erro {
    background-color: rgba(230, 57, 70, 0.2);
    color: #e63946;
}

#form-vip {
    max-width: 500px;
    margin: 0 auto;
}

#form-vip input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

#form-vip input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-cadastrar {
    background-color: #e63946;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cadastrar:hover {
    background-color: #c1121f;
}

/* Cashback */
.cashback {
    padding: 40px 0;
    background-color: #e63946;
    color: #fff;
    text-align: center;
}

.cashback h2 {
    font-size: 28px;
    margin: 0;
}

/* Footer */
footer {
    background-color: #1d1d1d;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .banner {
        height: 400px;
    }
    
    .banner-content h2 {
        font-size: 36px;
    }
    
    .banner-content p {
        font-size: 18px;
    }
    
    .lojas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px;
    }
    
    .banner {
        height: 300px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
    }
}

/* Estilos para a página de reservas */
.reservas-hero {
    background-image: url('upload/pizzaria-AwvMy4J9X5To9oeK.webp');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.reservas-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.reservas-hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.reservas-hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.reservas-info {
    padding: 60px 0;
    background-color: #fff;
}

.reservas-info h3 {
    font-size: 28px;
    color: #e63946;
    margin-bottom: 20px;
}

.reservas-info ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.reservas-form {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.reservas-form h3 {
    font-size: 28px;
    color: #1d1d1d;
    text-align: center;
    margin-bottom: 30px;
}

.form-reserva {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
}

.radio-option input {
    width: auto;
    margin-right: 8px;
}

.btn-reserva {
    background-color: #e63946;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
}

.btn-reserva:hover {
    background-color: #c1121f;
}

.reservas-ambientes {
    padding: 60px 0;
    text-align: center;
}

.reservas-ambientes h3 {
    font-size: 28px;
    color: #1d1d1d;
    margin-bottom: 40px;
}

.ambientes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ambiente-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ambiente-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .ambientes-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos para a página de cupons */
.cupons-hero {
    background-image: url('upload/site-mP42v9PjGGTWzXpP.webp');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    position: relative;
}

.cupons-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.cupons-hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cupons-hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cupons-lista {
    padding: 60px 0;
}

.cupons-lista h3 {
    font-size: 28px;
    color: #1d1d1d;
    text-align: center;
    margin-bottom: 40px;
}

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

.cupom-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.cupom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cupom-header {
    background-color: #e63946;
    color: #fff;
    padding: 15px;
    text-align: center;
}

.cupom-header h4 {
    font-size: 22px;
    margin: 0;
}

.cupom-body {
    padding: 20px;
}

.cupom-desconto {
    font-size: 36px;
    font-weight: 700;
    color: #e63946;
    text-align: center;
    margin-bottom: 15px;
}

.cupom-descricao {
    margin-bottom: 20px;
    text-align: center;
}

.cupom-codigo {
    background-color: #f5f5f5;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px dashed #ddd;
}

.cupom-validade {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.btn-usar-cupom {
    display: block;
    background-color: #e63946;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-usar-cupom:hover {
    background-color: #c1121f;
}

.cupom-regras {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.cupom-regras h3 {
    font-size: 28px;
    color: #1d1d1d;
    text-align: center;
    margin-bottom: 30px;
}

.cupom-regras ul {
    max-width: 800px;
    margin: 0 auto;
    list-style-position: inside;
}

.cupom-regras li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .cupons-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos adicionais para corrigir problemas de layout */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
}

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

header {
    background-color: #1d1d1d;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    color: #fff;
    margin: 0;
    font-size: 28px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e63946;
}

.banner {
    background-image: url('upload/site-mP42v9PjGGTWzXpP.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background-color: #e63946;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c1121f;
}

.lojas {
    padding: 60px 0;
}

.lojas h2 {
    text-align: center;
    margin-bottom: 10px;
}

.lojas p {
    text-align: center;
    margin-bottom: 40px;
}

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

.loja-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.loja-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.loja-card h3 {
    padding: 20px 20px 10px;
    margin: 0;
    font-size: 24px;
}

.status-bar {
    background-color: #e63946;
    color: #fff;
    padding: 5px 20px;
    margin-bottom: 15px;
}

.status-bar.aberto {
    background-color: #2a9d8f;
}

.status-bar.fechado {
    background-color: #e63946;
}

.loja-card p {
    padding: 0 20px;
    margin: 10px 0;
    text-align: left;
}

.btn-whatsapp {
    display: block;
    background-color: #25d366;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    margin: 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

.cadastro-vip {
    background-color: #1d3557;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cadastro-vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(29, 53, 87, 0.8);
    z-index: 1;
}

.cadastro-vip .container {
    position: relative;
    z-index: 2;
}

.cadastro-vip h2 {
    margin-bottom: 20px;
}

.logo-vip {
    font-size: 24px;
    margin-bottom: 30px;
}

.mensagem-cadastro {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
    transition: opacity 0.5s;
}

.mensagem-cadastro.sucesso {
    background-color: rgba(42, 157, 143, 0.2);
}

.mensagem-cadastro.erro {
    background-color: rgba(230, 57, 70, 0.2);
}

#form-vip {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

#form-vip input {
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

.btn-cadastrar {
    background-color: #e63946;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cadastrar:hover {
    background-color: #c1121f;
}

.cashback {
    background-color: #f1faee;
    padding: 40px 0;
    text-align: center;
}

.cashback h2 {
    color: #1d3557;
    margin: 0;
}

footer {
    background-color: #1d1d1d;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .lojas-grid {
        grid-template-columns: 1fr;
    }
    
    .banner {
        padding: 60px 0;
    }
    
    .banner h2 {
        font-size: 28px;
    }
}

@media (min-width: 768px) {
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
    }
}
