.atracciones {
    background-color: #e6f2ff;
}

.activities {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px auto;
    text-align: center;
    width: 100%;
    justify-content: center;
}

.activity {
    background-color: #eef3f7;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-sizing: border-box;
    width: calc(33.333% - 40px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.activity img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.atracciones-container {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px 40px;
    margin: 20px auto;
    background-color: white;
    width: 90%;
    text-align: center;
    display: block;
    max-width: 1200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .activities {
        justify-content: center;
        gap: 15px;
    }

    .activity {
        padding: 15px;
        width: calc(50% - 40px);
    }

    .atracciones-container {
        padding: 15px 20px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .activities {
        justify-content: center;
        gap: 10px;
    }

    .activity {
        padding: 10px;
        width: 100%;
    }

    .atracciones-container {
        padding: 10px 15px;
    }
}

.estado {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: default;
    margin-top: 10px;
    display: inline-block;
}

.abierta {
    background-color: green;
    color: white;
}

.cerrada {
    background-color: red;
    color: white;
}

.mantenimiento {
    background-color: yellow;
    color: black;
}

