#cats-intro {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 40px;
}

#cats-gallery {
    padding: 40px 0;
}

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

.cat-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(127, 90, 240, 0.2);
}

.cat-photo {
    width: 100%;
    height: 250px;
    background-color: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cat-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-text {
    padding: 20px;
}

.cat-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cat-attributes {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cat-attributes strong {
    color: var(--accent-light);
}

.cat-coming-soon {
    text-align: center;
    font-style: italic;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 20px;
}

.cat-coming-soon i {
    color: var(--primary-color);
    margin-left: 8px;
}

/* Responsivo */
@media (max-width: 480px) {
    .cat-photo {
        height: 200px;
    }

    .cat-text h3 {
        font-size: 1.3rem;
    }

    .cat-attributes {
        font-size: 0.9rem;
    }
}