<style>
.velvo-locations {
    padding: 80px 20px;
    background-color: #075166; /* Azul Velvo para contraste forte */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.v-loc-container {
    max-width: 1100px;
    margin: 0 auto;
}

.v-loc-header {
    text-align: center;
    margin-bottom: 50px;
}

.v-loc-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.v-loc-highlight {
    color: #66c8b8;
}

.v-loc-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.v-loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.v-loc-column h3 {
    color: #66c8b8;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(102, 200, 184, 0.3);
    padding-bottom: 10px;
}

.v-loc-column ul {
    list-style: none;
    padding: 0;
}

.v-loc-column li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.v-loc-column li span {
    margin-right: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.v-loc-column li:hover {
    transform: translateX(10px);
    color: #66c8b8;
}

.v-loc-footer {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.v-loc-footer p {
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .v-loc-title { font-size: 2.2rem; }
    .v-loc-grid { text-align: center; }
    .v-loc-column li { justify-content: center; }
}
</style>