/* Reset simples */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fefefe;
    color: #333;
}

/* Header */
.topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fdeef1;
    padding: 10px 16px;
}

.menu-btn {
    position: absolute;
    left: 16px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

.logo {
    height: 50px;
    object-fit: contain;
}

/* Área dos cards */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cards individuais */
.card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Informações */
.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 14px;
    border-top-right-radius: 12px;
}

.card-info h2 {
    font-size: 16px;
    margin-bottom: 2px;
}

.card-info p {
    font-size: 13px;
    color: #a0522d;
}

.whatsapp {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

.whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsividade */
@media (min-width: 768px) {
    .cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .card {
        max-width: 100%;
    }

    .card-info h2 {
        font-size: 18px;
    }

    .card-info p {
        font-size: 14px;
    }
}

.cards a {
    text-decoration: none;
    color: inherit;
    display: block;
}