/* 🎯 Sección Lugares */
.lugares {
    text-align: center;
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.lugares h2 {
    color: var(--azul);
    font-size: 2rem;
    margin-bottom: 10px;
}

.lugares .subtitulo {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* 🃏 Grid de Lugares */
.lugares .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

/* 🖼️ Card de Lugar */
.lugares .card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.lugares .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

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

.lugares .card h3 {
    font-size: 1.3rem;
    margin: 15px;
    color: var(--azul);
}

.lugares .card p {
    font-size: 0.95rem;
    color: #444;
    margin: 0 15px 20px;
    line-height: 1.5;
}

/* Botón Google Maps */
.btn-maps {
    display: inline-block;
    margin: 10px 15px 20px;
    padding: 10px 18px;
    background: var(--azul);
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-maps:hover {
    background: var(--dorado);
    color: var(--azul);
    transform: scale(1.1);
}

/* 📱 Responsive */
@media (max-width: 600px) {
    .lugares h2 {
        font-size: 1.6rem;
    }

    .lugares .card img {
        height: 160px;
    }
}