<style>
.velvo-gallery {
    padding: 100px 20px;
    background-color: #f8f9fa; /* Fundo levemente cinza para destacar os cards brancos */
    font-family: 'Inter', sans-serif;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-h2 {
    color: #075166;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.gallery-h2 .highlight {
    color: #66c8b8;
}

.gallery-subtitle {
    color: #555;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid System */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.img-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.5s ease;
}

.gallery-item:hover img {
    scale: 1.1;
}

.label-location {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(7, 81, 102, 0.9);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
}

.gallery-info {
    padding: 30px;
}

.gallery-info h3 {
    color: #075166;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.gallery-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-h2 { font-size: 2.2rem; }
    .gallery-grid { grid-template-columns: 1fr; }
}
</style>