body {
    background-color: #000000;
    color: white;
}

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

.colecoes h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #c7c7c7;
}

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

.card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.card-content h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: bold;
}

.card-content p {
    margin: 6px 0 12px;
    font-size: 0.70rem;
    opacity: 0.9;
}

.card-content a {
    display: inline-block;
    padding: 10px 18px;
    font-size: 0.9rem;
    background: #fff;
    color: #111;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.card-content a:hover {
    background: #111;
    color: #fff;
}


