/* ========================= */
/* RESET */
/* ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
}

/* ========================= */
/* FUNDO COM BLUR SUAVE + MOVIMENTO */
/* (SEM EXAGERO) */
/* ========================= */
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 15px;
    position: relative;
    overflow-x: hidden;
}

/* Fundo */
body::before {
    content: "";
    position: fixed;
    inset: -20px;
    background: url("fundo-site.png") center / cover no-repeat;
    filter: blur(4px);               /* BLUR LEVE */
    transform: scale(1.02);
    animation: bgMove 60s linear infinite;
    z-index: -2;
}

/* Overlay leve */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);  /* CONTRASTE SUAVE */
    z-index: -1;
}

/* Movimento quase imperceptível */
@keyframes bgMove {
    0%   { background-position: 50% 50%; }
    50%  { background-position: 55% 45%; }
    100% { background-position: 50% 50%; }
}

/* ========================= */
/* CONTAINER */
/* ========================= */
.container {
    background-color: rgba(255, 255, 255, 0.96);
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    animation: fadeSlide 0.8s ease-out forwards;
    position: relative;
    z-index: 1;
}

/* Entrada */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================= */
/* TÍTULO */
/* ========================= */
h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #232f3e;
    margin-bottom: 10px;
}

h1 + p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #333;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ========================= */
/* GRID */
/* ========================= */
.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* ========================= */
/* CARD */
/* ========================= */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

/* Imagem */
.card img {
    width: 100%;
    max-width: 260px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Nome */
.card p {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    min-height: 48px;
}

/* Preço */
.price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #b12704;
    margin: 8px 0 14px;
}

/* Botão */
.btn {
    display: block;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    padding: 12px;
    background-color: #ffd814;
    color: #111;
    border: 1px solid #fcd200;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, box-shadow 0.3s;
}

.btn:hover {
    background-color: #f7ca00;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

/* ========================= */
/* RODAPÉ */
/* ========================= */
footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #555;
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */
@media (max-width: 480px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 22px;
    }

    h1 {
        font-size: 1.9rem;
    }
}
