/* ======================================= */
/* 1. RESET E FONTES                       */
/* ======================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Garante que a fonte Bebas Neue seja o padrão */
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.1;
    color: #222;
    background: #fffdf8;
    /* Essencial para evitar barra de rolagem horizontal em mobile */
    overflow-x: hidden;
}

/* ======================================= */
/* 2. SEÇÃO HERO (PRINCIPAL) E BOTÕES      */
/* ======================================= */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centraliza o conteúdo verticalmente */
    text-align: center;
    padding: 3rem 0;
    background-image: url('hero-imagem.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease-in-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
    z-index: 2;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    margin-left: 0;
    color: #ffffff;
}

.textoum {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    margin: 15px 0;
    color: #ffffff;
}

.btn-destaque {
    background: #fff;
    color: #D2691E;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(229,57,53,0.4);
    font-size: 1.1rem;
}

.btn-cta {
    background: #E63946;
    color: #fff;
    display: block;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(229,57,53,0.4);
    font-size: 1.2rem;
}

.btn-cta:hover {
    background: #c62828;
    transform: scale(1);
}

.navigation-manual {
    position: absolute;
    width: 100%;
    bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.manual-btn {
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255,255,255,0.3);
}

.manual-btn:hover {
    background: #fff;
    transform: scale(1.2);
}

.imagem-full {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    padding: 0 12px;
    box-sizing: border-box;
}

.hero-img {
    max-width: 380px;
    margin-top: 2rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.03);
}

/* ======================================= */
/* 3. SEÇÃO BENEFÍCIOS (LAYOUT RESPONSIVO) */
/* ======================================= */
.benefits {
    padding: 3rem 1rem;
    background: #fff;
    text-align: center;
}

.benefits h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #e53935;
}

.benefit-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    position: relative;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-weight: bold;
    color: white;
    background-size: cover;
    background-position: center;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.benefit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    border-radius: 20px;
    z-index: -1;
}

.benefit.pastel { background-image: url("pastelqueijo.jpg"); }
.benefit.fritas { background-image: url("fritas.jpg"); }
.benefit.bebidas { background-image: url("bebidas.jpg"); }
.benefit.entrega { background-image: url("entrega.jpg"); }

.benefit:hover {
    transform: translateY(-5px);
}

/* ======================================= */
/* 4. SEÇÃO COMBO DESTAQUE (LAYOUT GRID)   */
/* ======================================= */
.combo-section {
    padding: 3rem 1rem;
    background-color: #f7f7f7;
    text-align: center;
}

.combo-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.combo-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.combo-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.combo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.combo-image-container {
    position: relative;
    overflow: hidden;
}

.combo-image {
    width: 100%;
    height: auto;
    display: block;
}

.tag-destaque {
    position: absolute;
    top: 15px;
    left: 0;
    background-color: #E63946;
    color: white;
    padding: 0.3rem 0.7rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.combo-details {
    padding: 1.5rem;
    text-align: left;
}

.combo-title {
    font-size: 1.8rem;
    color: #333;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.combo-items {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.combo-price {
    font-size: 2rem;
    font-weight: bold;
    color: #D2691E;
}

.btn-combo-cta {
    background: #E63946;
    color: #fff;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 1rem;
    text-align: center;
}

.btn-combo-cta:hover {
    background: #c62828;
}

/* ======================================= */
/* 5. OUTRAS SEÇÕES DE CONTEÚDO (Centralização) */
/* ======================================= */
.reviews h2,
.guarantee h2,
.about h2,
.faq h2,
.final-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #e53935;
}

.guarantee, .about, .final-cta {
    padding: 3rem 1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.reviews, .faq {
    padding: 3rem 1rem;
    text-align: center;
}

.review {
    margin: 0.5rem auto;
    padding: 1rem 1.2rem;
    border-radius: 20px;
    max-width: 500px;
    background: #fff3e0;
    font-style: italic;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

details {
    margin: 1rem auto;
    max-width: 500px;
    background: #fff8e1;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: left;
}

details:hover {
    transform: scale(1.02);
}

summary {
    font-weight: bold;
    color: #444;
}

footer {
    background: #111;
    color: #eee;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

footer a {
    color: #ffe082;
    text-decoration: none;
}

/* ======================================= */
/* 6. RESPONSIVIDADE (MEDIA QUERIES GERAIS)*/
/* ======================================= */
@media (min-width: 768px) {
    .benefit-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 600px) {
    .combo-list {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .combo-title {
        font-size: 1.6rem;
    }
    .combo-price {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .textoum {
        font-size: 1.2rem;
    }
    .combo-title {
        font-size: 1.5rem;
    }
    .combo-price {
        font-size: 1.7rem;
    }
    .btn-combo-cta {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}

/* ======================================= */
/* 7. BOTÕES FLUTUANTES E ANIMAÇÕES        */
/* ======================================= */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-float img {
    width: 50px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover img {
    transform: scale(1.1);
}

.instagram-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.instagram-float img {
    width: 50px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.instagram-float img:hover {
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}
